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"
}
}
}
}
}