Share:
About
List and read Google Drive files including Docs, Sheets, and Slides.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Google Drive MCP.
- What is the primary function of the Google Drive MCP?
- The Google Drive MCP allows you to list and read files stored in Google Drive. This includes various document types such as Google Docs, Sheets, and Slides, making it useful for accessing your cloud-based productivity documents.
- How do I authenticate with the Google Drive MCP?
- Authentication for the Google Drive MCP is handled via OAuth. You will need to grant the MCP client access to your Google Drive account through the standard OAuth flow when you first connect.
- Can I edit or create files in Google Drive using this MCP?
- No, the Google Drive MCP, as described, is designed for searching and reading Google Drive files. It does not support creating, editing, or deleting files; its capabilities are limited to retrieval operations.
- Is there a cost associated with using the Google Drive MCP?
- The Google Drive MCP itself is open-source and available on GitHub, implying no direct cost for the server software. However, usage may incur costs with Google Cloud Platform if API quotas are exceeded, depending on your Google Drive activity.
- How can I install the Google Drive MCP for a client like Cline?
- Installation in a client like Cline typically involves cloning the repository from the provided GitHub link. You would then follow the specific setup instructions for running local MCP servers within your chosen client environment.
- What is a key limitation of the Google Drive MCP?
- A key limitation is its read-only nature. While you can access and view your Google Drive content, you cannot use this MCP to modify existing documents, upload new files, or manage folder structures.
Install Google Drive MCP
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"google-drive": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-drive"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"google-drive": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-drive"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"google-drive": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-drive"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.