Google Drive MCP Server
@hxie-pallas
关于 Google Drive MCP Server
A google drive mcp servers based on Python
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"gdrive-mcp-server": {
"command": "python",
"args": [
"-m",
"venv",
"venv"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Google Drive MCP Server?
A server that provides an MCP (Model Context Protocol) interface to interact with Google Drive files and folders. It supports searching files, retrieving file content and metadata, and uses OAuth authentication with token persistence. Designed for developers integrating Google Drive into MCP-compatible AI assistants and clients.
How to use Google Drive MCP Server?
Install the package after creating a Python 3.12+ virtual environment. Obtain Google Drive API credentials (OAuth client ID for Desktop app) from the Google Cloud Console and save as credentials.json. Run the authentication setup script (python -m gdrive_mcp_server.auth_setup --credentials /path/to/credentials.json --token /path/to/tokens.json) to generate a token file. Then start the server with gdrive-mcp (stdio mode) or gdrive-mcp --http (HTTP mode). For Claude Desktop integration, add the command and token path to claude_desktop_config.json.
Key features of Google Drive MCP Server
- Search for files in Google Drive
- Get file content and metadata
- OAuth authentication with token persistence
- HTTP and stdio transport modes
- Python 3.12+ support
Use cases of Google Drive MCP Server
- Integrate Google Drive file search into AI assistants
- Retrieve file contents for processing or summarization
- Automate document metadata extraction
- Build custom MCP clients with Drive access
FAQ from Google Drive MCP Server
What are the runtime requirements?
Python 3.12 or higher and valid Google Drive API credentials (OAuth client ID for Desktop app).
How does authentication work?
Uses OAuth with token persistence. You run the auth_setup script with your downloaded credentials.json to generate a tokens.json file that authenticates future sessions.
What transport modes are available?
Two modes: stdio (default) and HTTP (using the --http flag). stdio is used for local integration; HTTP enables remote or web‑based MCP clients.
Where are user tokens stored?
In a tokens.json file specified during the authentication setup. The path is provided via the --token argument and reused when starting the server.
How do I integrate this server with Claude Desktop?
Add an entry to the mcpServers section of claude_desktop_config.json, setting the command to the full path of the gdrive-mcp executable and the args to include --token and the path to your tokens.json file.
文件与存储 分类下的更多 MCP 服务器
PDF Extraction MCP Server (Claude Code Fork)
xraywuMCP server to extract contents from a PDF file
Storacha MCP Storage Server
storachaStoracha MCP storage server - self-sovereign data for your AI applications.
Mcp Google Sheets
xing5This MCP server integrates with your Google Drive and Google Sheets, to enable creating and modifying spreadsheets.
WORK IN PROGRESS - USE WITH CAUTION - Windows:
hanwegMCP server for working with PDF files
Claude Document MCP Server
alejandroBallesterosCA lightweight MCP server for processing, editing, and interacting with PDF, Word, Excel, and CSV documents.
评论