drio
Open app

Google Drive MCP Server

Source

Efficient implementation of the Google Drive MCP server

Catalog onlyCatalog onlySTDIO

Overview

Google Drive MCP Server is a powerful Model Context Protocol (MCP) server that provides seamless integration with Google Drive, allowing AI models to search, list, and read files from Google Drive.

To use the Google Drive MCP Server, set up a Google Cloud Project, enable the Google Drive API, configure OAuth credentials, and run the server using Node.js. You can interact with the server through command line or integrate it with a desktop application.

  • Powerful full-text search capabilities for Google Drive files. - Read file contents directly using Google Drive file IDs. - Automatic handling of various Google Workspace file types (e.g., Google Docs, Sheets, Presentations). - Secure OAuth 2.0 authentication flow.
  1. Searching for documents in Google Drive using specific queries.
  2. Reading and processing file contents programmatically.
  3. Integrating with desktop applications for enhanced file management.

Add to your AI client

Use these steps to connect Google Drive MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "gdrive-mcp-server-felores": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gdrive-mcp-server-felores"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "gdrive-mcp-server-felores": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gdrive-mcp-server-felores"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "gdrive-mcp-server-felores": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gdrive-mcp-server-felores"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "gdrive-mcp-server-felores": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gdrive-mcp-server-felores"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "gdrive-mcp-server-felores": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gdrive-mcp-server-felores"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "gdrive-mcp-server-felores": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gdrive-mcp-server-felores"
      ]
    }
  }
}