FastMCP Google Docs Manager
# đź“„ 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
```bash
pip install uv
cd gemini-tasks-mcp
uv venv
source .venv/bin/activate
uv run main.py
```
### Generate Google API Credentials
1. Go to [Google Cloud Console](https://console.cloud.google.com/).
2. Create a project and enable **Google Docs API** and **Google Drive API**.
3. Go to **APIs & Services → Credentials**.
4. Click **“Create Credentials” → “OAuth client ID” → Application type: Desktop App**.
5. Download `credentials.json` and place it in the project folder.
### Gemini-CLI Configuration
```bash
cd ~/.gemini
nano settings.json
```
```json
"mcpServers": {
"docsManager": {
"command": "uv",
"args": ["run", "main.py"],
"cwd": "<<full-path>>/gemini-docs-mcp",
"timeout": 20000
}
}
```
## ❤️ Powered by FastMCP + Google Docs API + Google Drive APITDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: create_document for creation, list_documents for listing, and read_document for reading content. There is no overlap or ambiguity in their functions, making it easy for an agent to select the correct tool.
All tool names follow a consistent verb_noun pattern (create_document, list_documents, read_document) with no deviations. The naming is predictable and readable throughout the set.
With only 3 tools, the server feels thin for a Google Docs manager, as it lacks update and delete operations. While the tools cover basic CRUD aspects (create, list, read), the count is borderline low for the apparent scope of document management.
The tool set covers create, list, and read operations, but there are notable gaps such as update_document and delete_document for full lifecycle management. Agents can work around this for basic tasks, but the surface is incomplete for comprehensive document handling.