Google Drive MCP Server
Filesystemstdio
A Model Context Protocol server for Google Drive that lets AI assistants list, search, and read files stored in Drive, with automatic export of Google Docs, Sheets, Slides, and Drawings to readable formats. Authenticates via OAuth 2.0 and exposes Drive files as MCP resources so agents can ground their answers in your documents without copying data into chat first.
连接
将此配置添加到 .claude/mcp.json
{
"mcpServers": {
"google-drive": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gdrive"
],
"env": {
"GDRIVE_CREDENTIALS_PATH": "<YOUR_GDRIVE_CREDENTIALS_PATH>"
}
}
}
}工具 (2)
gdrive_search
Search for files in Google Drive matching a query string.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Full-text search query for Drive files"
}
}
}gdrive_read_file
Read the contents of a Google Drive file, exporting Google-native formats to text.
{
"type": "object",
"required": [
"file_id"
],
"properties": {
"file_id": {
"type": "string",
"description": "The Google Drive file ID to read"
}
}
}资源
此服务器未提供任何资源。
提示词
此服务器未提供任何提示词。
服务器信息
- 许可证
- MIT
- 星标
- 0
- 最后更新
- 2026年6月12日