📄 FastMCP Google Docs Manager
Manage Google Docs using a FastMCP API server for Gemini-CLI. Supports listing documents, reading content, and creating new docs.
🚀 Features
- List Google Docs files
- Read document content
- Create new documents with title and content
🔧 Setup
Install Dependencies
pip install uv
cd gemini-tasks-mcp
uv venv
source .venv/bin/activate
uv run main.py
Generate Google API Credentials
- Go to Google Cloud Console.
- Create a project and enable Google Docs API and Google Drive API.
- Go to APIs & Services → Credentials.
- Click “Create Credentials” → “OAuth client ID” → Application type: Desktop App.
- Download
credentials.jsonand place it in the project folder.
Gemini-CLI Configuration
cd ~/.gemini
nano settings.json
"mcpServers": {
"docsManager": {
"command": "uv",
"args": ["run", "main.py"],
"cwd": "<<full-path>>/gemini-docs-mcp",
"timeout": 20000
}
}
