Home/Servers/Google Drive MCP Server

Google Drive MCP Server

by Anthropic ยท โญ 1.1k stars ยท updated 4 months ago

File access and search capabilities for Google Drive. List, read, search, and download files from your Google Drive directly in your AI workflow.

82
Very Good

Quality Score Breakdown

maintenance82/100
community80/100
documentation83/100
compatibility83/100

Use Cases

  • โœ“list Google Drive files
  • โœ“search documents
  • โœ“read files
  • โœ“download content

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "gdrive": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gdrive"
      ],
      "env": {
        "GDRIVE_CREDENTIALS_PATH": "/path/to/credentials.json"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "gdrive": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gdrive"
      ],
      "env": {
        "GDRIVE_CREDENTIALS_PATH": "/path/to/credentials.json"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "gdrive": {
        "command": "npx",
        "args": [
          "-y",
          "@modelcontextprotocol/server-gdrive"
        ],
        "env": {
          "GDRIVE_CREDENTIALS_PATH": "/path/to/credentials.json"
        }
      }
    }
  }
}
โ† Back to all servers