MCP Setup Guide
How to Set Up Google Drive MCP with ClawdBot
Search and read Docs/Sheets as your personal knowledge base.
Overview
- Category: Productivity
- Difficulty: Hard
- Best for: Search and read Docs/Sheets as your personal knowledge base.
Quick Start
If your provider offers a hosted MCP endpoint, use a URL-based config:
Hosted MCP Config json
{
"google-drive": {
"url": "https://YOUR_GOOGLE_DRIVE_MCP_ENDPOINT"
}
} For local or self-hosted servers, use a CLI bridge and keep secrets in environment variables:
Local CLI Config json
{
"google-drive": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://YOUR_GOOGLE_DRIVE_MCP_ENDPOINT"],
"env": {
"GOOGLE_DRIVE_API_KEY": "YOUR_GOOGLE_DRIVE_API_KEY"
}
}
} Common Pitfalls
- OAuth flow complexity; scopes; enterprise policies.
- Store credentials in environment variables, not in config files.
- Limit scopes to the minimum required for your workflows.
- Verify the MCP is running with
clawdbot statusbefore testing.
Example Prompts
- List the latest documents and summarize them.
- Find documents related to "Q1 planning".
- Create a new note titled "Weekly Summary".