FastMCP Google Docs Manager
Enables listing Google Docs files, reading document content, and creating new documents with specific titles and content.
Provides tools for listing and managing files via the Google Drive API to support document management workflows.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FastMCP Google Docs Managercreate a new document titled 'Meeting Notes' with the text 'Discuss Q3 goals'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
đź“„ 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
Related MCP server: Google Docs MCP Server
đź”§ Setup
Install Dependencies
pip install uv
cd gemini-tasks-mcp
uv venv
source .venv/bin/activate
uv run main.pyGenerate 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
}
}❤️ Powered by FastMCP + Google Docs API + Google Drive API
Available Tools
3 toolscreate_documentB
Create a new Google Doc with a title and body content.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| content | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool creates a new document, implying a write operation, but does not disclose any behavioral traits such as permissions required, whether the creation is idempotent, rate limits, or what happens on failure. This is a significant gap for a mutation tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence that efficiently conveys the core purpose without any wasted words. It is appropriately sized and front-loaded, making it easy to understand at a glance. Every part of the sentence earns its place by specifying the action, resource, and parameters.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (a mutation with 2 parameters), no annotations, and an output schema present, the description is partially complete. It covers the basic purpose and parameters but lacks behavioral context like permissions or error handling. The existence of an output schema means return values are documented elsewhere, but the description should still address key usage aspects for a creation tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds meaning by specifying that the parameters are for 'title and body content', which maps directly to the two parameters in the schema (title and content). However, with 0% schema description coverage, the schema provides no details about these parameters. The description compensates somewhat by naming them, but does not provide format, constraints, or examples, leaving gaps in understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Create a new Google Doc') and specifies the resource ('Google Doc'), which is a specific document type. It distinguishes from siblings like 'list_documents' and 'read_document' by focusing on creation rather than listing or reading. However, it doesn't explicitly differentiate from potential other creation tools beyond the context provided.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'list_documents' or 'read_document'. It lacks any mention of prerequisites, such as authentication needs or when creation is appropriate versus reading existing documents. There is no explicit when/when-not usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_documentsB
List Google Docs files from your Google Drive.
| Name | Required | Description | Default |
|---|---|---|---|
| max_results | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool lists files but doesn't describe any behavioral traits such as authentication requirements, rate limits, pagination behavior, or what happens if no documents exist. This leaves significant gaps in understanding how the tool behaves in practice.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one optional parameter) and the presence of an output schema, the description is minimally adequate. However, with no annotations and incomplete parameter coverage, it lacks details on behavioral aspects and usage context, making it only partially complete for effective agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description mentions no parameters, while the input schema has one parameter ('max_results') with 0% schema description coverage. Since the description doesn't add any parameter information beyond what the schema provides (which is minimal), it meets the baseline of 3 for having no parameter details in the description when schema coverage is low.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List') and resource ('Google Docs files from your Google Drive'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'create_document' or 'read_document' beyond the obvious action difference, which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'read_document' or 'create_document'. It doesn't mention any prerequisites, context for usage, or exclusions, leaving the agent to infer usage based on tool names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
read_documentB
Read the text content of a Google Doc by its document ID.
| Name | Required | Description | Default |
|---|---|---|---|
| doc_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool reads text content, implying a read-only operation, but doesn't cover aspects like authentication needs, rate limits, error handling (e.g., for invalid IDs), or what happens if the document is inaccessible. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded with the core action ('Read the text content'), making it easy to scan and understand quickly. Every part of the sentence contributes essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one parameter) and the presence of an output schema (which handles return values), the description is somewhat complete but lacks depth. It covers the basic action but misses behavioral context (e.g., permissions, errors) and usage guidelines. With no annotations and minimal parameter explanation, it's adequate but has clear gaps for effective agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds minimal meaning beyond the input schema: it clarifies that 'doc_id' refers to a Google Doc's document ID. However, with 0% schema description coverage (the schema has no descriptions for parameters), the description doesn't fully compensate by explaining format, examples, or constraints (e.g., ID structure). Since there's only one parameter, the baseline is higher, but more detail would improve clarity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Read the text content') and resource ('a Google Doc by its document ID'), making the purpose immediately understandable. It doesn't explicitly differentiate from sibling tools like 'list_documents' (which lists documents) or 'create_document' (which creates new ones), but the verb 'Read' versus 'list' or 'create' provides implicit distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing a valid document ID), exclusions (e.g., not for binary files), or comparisons to siblings like 'list_documents' for browsing documents first. Usage is implied by the action but not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Google Docs MCP Pack — read, create, and edit Google Docs via OAuth.
Provides tools for searching Google Workspace documentation and much more.
Create and manage documents, spreadsheets, and presentations from your AI assistant.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceMCP server for Google Docs — create, read, edit, format, and manage documents through 26 tools via the Model Context Protocol.211MIT
- AlicenseNot gradedqualityDmaintenanceA powerful Model Context Protocol (MCP) server implementation for seamless Google Docs API integration, enabling AI assistants to create, read, update, and manage Google Docs.12MIT
- AlicenseNot gradedqualityDmaintenanceEnables Claude to interact with collaborative Docs instances, providing document management, content editing, access control, and AI-powered transformations via MCP.1MIT
- AlicenseNot gradedqualityFmaintenanceMCP server that allows you to connect to Google Docs through Claude, enabling listing, reading, creating, updating, searching, and deleting documents.1,30348MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chronis10/gemini-docs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server