Google Toolbox
The Google Toolbox server provides tools to interact with various Google services:
Gmail: List recent emails, perform advanced searches, compose and send emails (with CC/BCC support), and modify email states (read/unread, archived, trashed)
Google Calendar: Retrieve upcoming events, create new events with attendees and details, modify existing events, and remove events
Google Drive: Read file content and search for files with customizable queries
Google Search: Perform searches and return formatted results
Enables email operations including listing, searching, sending, and modifying emails with support for labels, read/unread status, and archive/trash actions
Enables web searches via Google's Custom Search API and returns formatted search results
Provides calendar management capabilities for creating, retrieving, updating, and deleting events, with support for attendees, locations, and time ranges
Allows searching Google Drive files with customizable queries and reading file content from Google Drive documents
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., "@Google Toolboxsearch my Gmail for emails from John this week"
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.
py-mcp-google-toolbox
An MCP server that provides AI assistants with powerful tools to interact with Google services, including Gmail, Google Calendar, Google Drive, and Google Search.
Overview
py-mcp-google-toolbox provides the following Google-related functionalities:
Gmail operations (read, search, send, modify)
Google Calendar management (events creation, listing, updating, deletion)
Google Drive interactions (search, read files)
Google Search integration (search web)
Related MCP server: mcp-google-sheets
Table of Contents
Prerequisites
Python: Install Python 3.12 or higher
Google Cloud Console Setup:
Go to Google Cloud Console
Create a new project or select an existing one
Enable the Service API:
Go to "APIs & Services" > "Library"
Search for and enable "Gmail API"
Search for and enable "Google Calendar API"
Search for and enable "Google Drive API"
Search formand enable "Custom Search API"
Set up OAuth 2.0 credentials from GCP:
Go to "APIs & Services" > "Credentials"
Click "Create Credentials" > "OAuth client ID"
Choose "Web application"
Note down the Client ID and Client Secret
Client ID
Client Secret
download secret json and rename to credentials.json
Generate an API key
Go to Custom Search Engine and get its ID
Installation
Git Clone
git clone https://github.com/jikime/py-mcp-google-toolbox.git
cd py-mcp-google-toolboxConfiguration
Install UV package manager:
curl -LsSf https://astral.sh/uv/install.sh | shCreate and activate virtual environment:
uv venv -p 3.12
source .venv/bin/activate # On MacOS/Linux
# or
.venv\Scripts\activate # On WindowsInstall dependencies:
uv pip install -r requirements.txtGet refresh token (if token is expired, you can run this)
uv run get_refresh_token.pyThis will:
Open your browser for Google OAuth authentication
Request the following permissions:
https://www.googleapis.com/auth/gmail.modifyhttps://www.googleapis.com/auth/calendarhttps://www.googleapis.com/auth/gmail.sendhttps://www.googleapis.com/auth/gmail.readonlyhttps://www.googleapis.com/auth/drivehttps://www.googleapis.com/auth/drive.filehttps://www.googleapis.com/auth/drive.readonly
Save the credentials to
token.jsonDisplay the refresh token in the console
Environment variables:
cp env.example .env
vi .env
# change with your key
GOOGLE_API_KEY=your_google_api_key
GOOGLE_CSE_ID=your_custom_search_engine_id
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
GOOGLE_REFRESH_TOKEN=your_google_refresh_tokencopy credentials.json to project root folder (py-mcp-google-toolbox)
Using Docker
Build the Docker image:
docker build -t py-mcp-google-toolbox .Run the container:
docker run py-mcp-google-toolboxUsing Local
Run the server:
mcp run server.pyRun the MCP Inspector
mcp dev server.pyConfigure MCP Settings
Add the server configuration to your MCP settings file:
Claude desktop app
To install automatically via Smithery:
npx -y @smithery/cli install @jikime/py-mcp-google-toolbox --client claudeTo install manually open
~/Library/Application Support/Claude/claude_desktop_config.json
Add this to the mcpServers object:
{
"mcpServers": {
"Google Toolbox": {
"command": "/path/to/bin/uv",
"args": [
"--directory",
"/path/to/py-mcp-google-toolbox",
"run",
"server.py"
]
}
}
}Cursor IDE
open ~/.cursor/mcp.json
Add this to the mcpServers object:
{
"mcpServers": {
"Google Toolbox": {
"command": "/path/to/bin/uv",
"args": [
"--directory",
"/path/to/py-mcp-google-toolbox",
"run",
"server.py"
]
}
}
}for Docker
{
"mcpServers": {
"Google Toolbox": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"py-mcp-google-toolbox"
]
}
}
}Tools Documentation
Gmail Tools
list_emails: Lists recent emails from Gmail inbox with filtering optionssearch_emails: Performs advanced Gmail searches with detailed email content retrievalsend_email: Composes and sends emails with support for CC, BCC recipientsmodify_email: Changes email states (read/unread, archived, trashed) by modifying labels
Calendar Tools
list_events: Retrieves upcoming calendar events within specified time rangescreate_event: Creates new calendar events with attendees, location, and descriptionupdate_event: Modifies existing calendar events with flexible parameter updatingdelete_event: Removes calendar events by event ID
Drive Tools
read_gdrive_file: Reads and retrieves content from Google Drive filessearch_gdrive: Searches Google Drive for files with customizable queries
Search Tools
search_google: Performs Google searches and returns formatted results
Development
For local testing, you can use the included client script:
# Example: List emails
uv run client.py list_emails max_results=5 query="is:unread"
# Example: Search emails
uv run client.py search_emails query="from:test@example.com"
# Example: Send email
uv run client.py send_email to="test@example.com" subject="test mail" body="Hello"
# Example: Modify email
uv run client.py modify_email id=MESSAGE_ID remove_labels=INBOX add_labels=ARCHIVED
# Example: List events
uv run client.py list_events time_min=2025-05-01T00:00:00+09:00 time_max=2025-05-02T23:59:59+09:00 max_results=5
# Example: Create event
uv run client.py create_event summary="new event" start=2025-05-02T10:00:00+09:00 end=2025-05-02T11:00:00+09:00 attendees="user1@example.com,user2@example.com"
# Example: Update event
uv run client.py update_event event_id=EVENT_ID summary="update event" start=2025-05-02T10:00:00+09:00 end=2025-05-02T11:00:00+09:00 attendees="user1@example.com,user2@example.com"
# Example Delete event
uv run client.py delete_event event_id=EVENT_ID
# Example: Search Google
uv run client.py search_google query="what is the MCP?"
# Example: Search Google Drive
uv run client.py search_gdrive query=mcp
# Example: Read file
uv run client.py read_gdrive_file file_id=1234567890License
MIT License
Available Tools
11 toolscreate_eventC
Create a new calendar event
| Name | Required | Description | Default |
|---|---|---|---|
| attendees | No | ||
| description | No | ||
| end | Yes | ||
| location | No | ||
| start | Yes | ||
| summary | 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. 'Create a new calendar event' implies a write operation, but it doesn't disclose any behavioral traits such as required permissions, whether the event is automatically saved or sent, rate limits, or what happens on failure. For a mutation tool with zero annotation coverage, this leaves significant gaps in understanding how the tool behaves.
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, front-loaded sentence with zero waste: 'Create a new calendar event'. It's appropriately sized for the tool's purpose, making it easy to scan and understand quickly without unnecessary elaboration.
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 complexity (a mutation tool with 6 parameters), no annotations, no output schema, and 0% schema description coverage, the description is incomplete. It lacks essential context such as parameter explanations, behavioral details, usage guidelines, and return value information. This makes it insufficient for an AI agent to use the tool effectively without additional inference or trial-and-error.
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 no meaning beyond what the input schema provides. With schema description coverage at 0% (no parameter descriptions in the schema) and 6 parameters, the description doesn't explain any parameters like 'summary', 'start', 'end', 'attendees', 'description', or 'location'. This forces the agent to guess parameter semantics, which is inadequate for tool invocation.
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 verb ('create') and resource ('calendar event'), making the purpose immediately understandable. It distinguishes from siblings like 'delete_event', 'list_events', and 'update_event' by specifying it's for creation rather than deletion, listing, or modification. However, it doesn't explicitly mention what distinguishes it from other creation tools (like 'send_email' for sending emails), so it's not a perfect 5.
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., calendar access), when to choose 'create_event' over 'update_event' or other siblings, or any exclusions. The agent must infer usage from the tool name alone, which is insufficient for effective selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_eventC
Delete a calendar event
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | 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 'Delete' which implies a destructive mutation, but doesn't specify whether this is reversible, what permissions are required, or what happens to associated data (e.g., notifications, attendees). For a destructive tool with zero annotation coverage, this leaves significant behavioral gaps.
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 with zero wasted words. It's appropriately sized for a simple tool and front-loads the essential information without unnecessary elaboration.
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 that this is a destructive mutation tool with no annotations, no output schema, and minimal parameter documentation, the description is incomplete. It doesn't address critical aspects like error conditions, confirmation requirements, or what happens post-deletion, which are essential for safe tool invocation.
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 schema description coverage is 0%, so the description must compensate for undocumented parameters. It mentions 'a calendar event' which implies the 'event_id' parameter, but doesn't explain what format the ID should be, where to obtain it, or any validation rules. This adds minimal semantic value beyond what's inferred from the parameter name.
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 ('Delete') and the resource ('a calendar event'), which provides a specific verb+resource combination. However, it doesn't differentiate this tool from its sibling 'update_event' in terms of destructive vs. non-destructive operations, which would be helpful for sibling differentiation.
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 'update_event' or 'create_event'. There's no mention of prerequisites (e.g., needing an event_id), exclusions, or contextual factors that would help an agent decide between this and other event-related tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_emailsC
List recent emails from Gmail inbox
| Name | Required | Description | Default |
|---|---|---|---|
| max_results | No | ||
| query | 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 this is a list operation but doesn't mention whether it requires authentication, has rate limits, what 'recent' means temporally, or how results are ordered. This leaves significant gaps in understanding the tool's 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 gets straight to the point with no wasted words. It's appropriately sized for a simple list operation and front-loads the core functionality.
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?
For a tool with no annotations, no output schema, and 0% schema description coverage, the description is inadequate. It doesn't explain return format, error conditions, authentication requirements, or how parameters interact. Given the complexity of email retrieval and sibling tools, more context is needed.
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 schema description coverage is 0%, so the description must compensate. It mentions 'recent emails' but doesn't explain how the 'query' parameter works (e.g., Gmail search syntax) or what 'max_results' controls beyond its name. The description adds minimal value beyond what's implied by parameter names.
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 verb ('List') and resource ('recent emails from Gmail inbox'), making the purpose immediately understandable. However, it doesn't distinguish this tool from sibling 'search_emails', which appears to be a similar email retrieval tool, so it doesn't achieve full differentiation.
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 'search_emails' or 'modify_email'. It mentions 'recent emails' but doesn't define what 'recent' means or specify any exclusions or prerequisites for usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_eventsC
List upcoming calendar events
| Name | Required | Description | Default |
|---|---|---|---|
| max_results | No | ||
| time_max | No | ||
| time_min | No |
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 events but doesn't cover critical aspects like authentication requirements, rate limits, pagination behavior (implied by 'max_results' but not explained), whether it returns past events, or error conditions. This is a significant gap for a tool that interacts with calendar data.
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 with zero wasted words. It's front-loaded with the core purpose, making it easy to scan and understand quickly. Every word earns its place by conveying 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 complexity (interacting with calendar events, 3 parameters), lack of annotations, and no output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., event details, error formats), how to handle the time parameters, or behavioral traits like permissions needed. This leaves the agent under-informed for effective 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 schema description coverage is 0%, meaning none of the three parameters ('max_results', 'time_max', 'time_min') are documented in the schema. The description adds no information about these parameters—it doesn't explain what 'upcoming' means relative to 'time_min'/'time_max', the format for time values, or the effect of 'max_results'. This fails to compensate for the lack of schema documentation.
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 'List upcoming calendar events' clearly states the verb ('List') and resource ('upcoming calendar events'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'search_google' or 'search_emails' that might also return calendar events, nor does it specify if it lists only the user's events or shared ones.
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 sibling tools like 'search_google' (which might search across Google services including Calendar) or 'update_event' (for modifying events), leaving the agent to guess 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.
modify_emailC
Modify email labels (archive, trash, mark read/unread, etc.)
| Name | Required | Description | Default |
|---|---|---|---|
| add_labels | No | ||
| id | Yes | ||
| remove_labels | No |
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. While 'modify' implies a mutation operation, the description doesn't specify whether changes are reversible, what permissions are required, or how errors are handled (e.g., invalid labels). It mentions actions like 'archive' and 'trash' which suggest destructive changes, but lacks explicit warnings or context about their permanence.
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 front-loads the core purpose. It uses parentheses to provide examples without verbosity. However, the 'etc.' is slightly vague and could be replaced with more precise terminology to improve clarity without sacrificing conciseness.
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 complexity of a mutation tool with 3 parameters, 0% schema coverage, no annotations, and no output schema, the description is inadequate. It fails to explain parameter semantics, behavioral implications (e.g., side effects), or expected outcomes. For a tool that modifies email states, more context on labels, ID sourcing, and result handling is needed.
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?
Schema description coverage is 0%, so the description must compensate for undocumented parameters. It only vaguely references 'labels' without explaining what 'add_labels' or 'remove_labels' entail, their format, or valid values (e.g., system vs. user labels). The 'id' parameter is not mentioned at all, leaving its purpose ambiguous. The description adds minimal value beyond the schema's property titles.
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 verb ('modify') and resource ('email labels'), and provides specific examples of modifications (archive, trash, mark read/unread). It distinguishes from obvious siblings like 'send_email' or 'list_emails' by focusing on label manipulation rather than creation or retrieval. However, it doesn't explicitly differentiate from potential overlapping tools like 'update_event' for email-related events.
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 an email ID), exclusions (e.g., not for creating emails), or comparisons to siblings like 'search_emails' for finding emails to modify. The agent must infer usage from the tool name and parameters alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
read_gdrive_fileC
Read contents of a file from Google Drive
| Name | Required | Description | Default |
|---|---|---|---|
| file_id | 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 mentions reading file contents but doesn't specify aspects like authentication requirements, rate limits, file size constraints, or output format (e.g., text, binary). This leaves significant gaps for a tool that interacts with an external service like Google Drive.
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 unnecessary words. It's front-loaded and appropriately sized for a simple tool, with zero waste.
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 complexity of interacting with Google Drive (an external API), lack of annotations, no output schema, and incomplete parameter documentation, the description is insufficient. It doesn't cover critical aspects like authentication, error handling, or return values, making it inadequate for safe and effective 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 input schema has 0% description coverage, and the tool description doesn't add any parameter details. It doesn't explain what 'file_id' is, how to obtain it, or any constraints (e.g., format, validity). With low schema coverage, the description fails to compensate, leaving the parameter undocumented.
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 contents') and resource ('a file from Google Drive'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'search_gdrive' or 'search_google', which might also involve reading Google Drive content, so it doesn't reach the highest 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 'search_gdrive' or 'search_google', nor does it mention any prerequisites or exclusions. It merely states what the tool does without contextual usage information.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_emailsC
Search emails with advanced query
| Name | Required | Description | Default |
|---|---|---|---|
| max_results | No | ||
| query | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions 'advanced query' but doesn't disclose behavioral traits such as permissions needed, rate limits, pagination, or what 'advanced' means (e.g., search operators). This leaves critical operational details unspecified.
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 with no wasted words, making it appropriately sized and front-loaded. However, it lacks structural depth that could improve clarity without adding bulk.
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 no annotations, 0% schema coverage, no output schema, and a search tool with siblings, the description is incomplete. It doesn't explain return values, error handling, or contextual nuances, leaving significant 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?
Schema description coverage is 0%, so the description must compensate. It implies a 'query' parameter but adds no meaning beyond the schema's basic titles. No details on query syntax, format, or how 'max_results' interacts with search are provided, failing to enhance parameter 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 'Search emails with advanced query' states the verb ('search') and resource ('emails'), providing a basic purpose. However, it's vague about what 'advanced query' entails and doesn't differentiate from sibling tools like 'list_emails' or 'search_google', leaving ambiguity in scope and functionality.
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?
No guidance is provided on when to use this tool versus alternatives. With siblings like 'list_emails' and 'search_google', the description lacks explicit context, prerequisites, or exclusions, offering no help in tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_gdriveC
Search for files in Google Drive
| Name | Required | Description | Default |
|---|---|---|---|
| page_size | No | ||
| page_token | No | ||
| query | 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 only states the basic action ('Search for files') without mentioning permissions, rate limits, pagination behavior (implied by page_size/page_token but not explained), or what the search returns. This leaves significant gaps for a tool with 3 parameters.
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 gets straight to the point with no wasted words. It's appropriately sized for a basic tool description, though it lacks depth due to its brevity.
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 complexity (3 parameters, no annotations, no output schema), the description is incomplete. It doesn't cover parameter usage, behavioral traits, or output expectations. For a search tool with pagination and query parameters, more context is needed to use it effectively.
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?
Schema description coverage is 0%, so the description must compensate but adds no parameter information. It doesn't explain what 'query' should contain (e.g., search syntax), what 'page_size' and 'page_token' do, or how results are structured. With 3 parameters, this is inadequate.
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 verb ('Search') and resource ('files in Google Drive'), making the purpose immediately understandable. However, it doesn't distinguish this tool from sibling tools like 'search_google' or 'read_gdrive_file', which might have overlapping or related functionality.
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. With sibling tools like 'search_google' (possibly broader search) and 'read_gdrive_file' (reading specific files), there's no indication of context, prerequisites, or exclusions for this search tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_googleC
Perform a Google search and return formatted results
| Name | Required | Description | Default |
|---|---|---|---|
| num_results | No | ||
| query | 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 mentions 'return formatted results,' which adds some context about output format, but lacks details on rate limits, authentication needs, pagination, error handling, or what 'formatted' entails. For a search tool with zero annotation coverage, this leaves significant behavioral gaps.
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 front-loads the core action and outcome with zero wasted words. It's appropriately sized for a simple search tool, 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 moderate complexity (search operation with 2 parameters), no annotations, and no output schema, the description is incomplete. It lacks details on behavioral traits, parameter usage, and output structure. The description alone doesn't provide enough context for an agent to use the tool effectively beyond basic invocation.
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 input schema has 2 parameters with 0% description coverage, so the schema provides no semantic context. The description doesn't add any parameter-specific information beyond the tool's overall function. It implies the 'query' parameter is used for the search but doesn't explain 'num_results' or other details. Baseline 3 is appropriate as the description doesn't compensate for the schema gap but doesn't mislead.
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 tool's purpose with a specific verb ('Perform') and resource ('Google search'), and specifies the outcome ('return formatted results'). It distinguishes from siblings like search_emails or search_gdrive by specifying Google search, though it doesn't explicitly contrast them. The purpose is unambiguous but lacks explicit sibling differentiation.
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 when to prefer this over other search tools (e.g., search_emails for email content) or general web search contexts. Usage is implied by the name and purpose, but no explicit when/when-not or alternative recommendations are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_emailC
Send a new email
| Name | Required | Description | Default |
|---|---|---|---|
| bcc | No | ||
| body | Yes | ||
| cc | No | ||
| subject | Yes | ||
| to | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but offers minimal behavioral insight. It implies a write operation (sending) but does not disclose permissions needed, rate limits, delivery confirmation, or error handling. This is inadequate 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 extremely concise with a single sentence, 'Send a new email,' which is front-loaded and wastes no words. However, this conciseness comes at the cost of completeness, as it under-specifies critical details.
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?
For a 5-parameter mutation tool with no annotations and no output schema, the description is incomplete. It fails to address behavioral aspects, parameter meanings, or usage context, making it insufficient for reliable agent operation despite the simple action implied.
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?
Schema description coverage is 0%, so the description must compensate but adds no parameter details. It does not explain the purpose of fields like bcc or cc, expected formats, or constraints beyond what the schema titles imply. This leaves significant gaps in understanding the 5 parameters.
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 'Send a new email' clearly states the action (send) and resource (email), distinguishing it from siblings like list_emails or modify_email. However, it lacks specificity about what constitutes 'new' versus existing emails, making it somewhat vague compared to more precise alternatives.
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?
No guidance is provided on when to use this tool versus alternatives like modify_email or search_emails. The description does not mention prerequisites, context, 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.
update_eventC
Update an existing calendar event
| Name | Required | Description | Default |
|---|---|---|---|
| attendees | No | ||
| description | No | ||
| end | No | ||
| event_id | Yes | ||
| location | No | ||
| start | No | ||
| summary | No |
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. 'Update' implies a mutation operation, but the description doesn't disclose whether this requires specific permissions, what happens to unspecified fields (partial vs. full updates), whether changes are reversible, or any rate limits. It mentions no behavioral traits beyond the basic action.
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 with no wasted words. It's front-loaded with the core action ('Update an existing calendar event') and doesn't include unnecessary details. Every word earns its place, 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 complexity (7 parameters, mutation tool), lack of annotations, and no output schema, the description is incomplete. It doesn't explain what the tool returns, error conditions, or behavioral context needed for safe invocation. For a tool that modifies calendar events, this leaves significant gaps in understanding how to use it effectively.
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 zero meaning beyond what the input schema provides. With 7 parameters and 0% schema description coverage, the schema only provides titles like 'Attendees' and 'Description' without explaining what these parameters do, their formats, or constraints. The description doesn't compensate by explaining any parameters, leaving all semantics undocumented.
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 verb ('Update') and resource ('an existing calendar event'), making the purpose immediately understandable. It distinguishes from sibling tools like 'create_event' and 'delete_event' by specifying it's for existing events. However, it doesn't specify what aspects can be updated beyond the generic term.
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 (like needing an event_id), when not to use it, or how it differs from similar tools like 'modify_email' or 'create_event' in the sibling list. The agent must infer usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
11 tool updates
v1.0.0- First observed
create_event - First observed
delete_event - First observed
list_emails - First observed
list_events - First observed
modify_email - First observed
read_gdrive_file - First observed
search_emails - First observed
search_gdrive - First observed
search_google - First observed
send_email - First observed
update_event
TDQS
Most tools have distinct purposes targeting different Google services (Calendar, Gmail, Drive, Search), but 'list_emails' and 'search_emails' could cause some confusion since both involve email retrieval. The descriptions help differentiate them, but the overlap in email listing vs. searching might lead to occasional misselection.
The naming follows a consistent verb_noun pattern (e.g., create_event, list_emails, search_gdrive) with clear, descriptive names. There is a minor deviation with 'modify_email' using 'modify' instead of a more specific verb like 'update', but overall the pattern is predictable and readable.
With 11 tools, the count is well-scoped for a 'Google Toolbox' covering multiple services (Calendar, Gmail, Drive, Search). Each tool earns its place by providing essential operations without being overwhelming, making it appropriate for the server's broad but manageable purpose.
The tool surface has notable gaps in coverage for the implied domain of Google services. For example, there is no tool for creating or updating Google Drive files (only reading and searching), and Calendar lacks a 'get_event' tool. While core workflows are partially covered, these omissions could lead to agent failures in more complex tasks.
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
Provides tools for searching Google Workspace documentation and much more.
SEO & marketing toolkit for AI agents: GA4, Search Console, AdSense, GTM, PageSpeed, Trends.
google search: google web search api, web, images, videos, news, music, favicon, proxy, audio.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceA tool for manipulating Google Spreadsheet and Google Drive using MCP (Metoro Control Protocol).10MIT
- -
- AlicenseNot gradedqualityDmaintenanceEnables interaction with Google Sheets, Docs, and Drive to manage spreadsheets, documents, and files. It supports operations like reading and updating cell data, extracting text from documents, and searching or sharing files within Google Drive.MIT
- AlicenseAqualityFmaintenanceQuery Google Search Console search analytics, inspect URL indexing status, manage sitemaps, and analyze keyword performance. 13 tools covering search queries, page performance, sitemap management, and index coverage.134796MIT
Appeared in Searches
- Tools for finding trending keywords, ad costs, and storing data in Google Sheets
- How to Create Looker Dashboards
- Automating Workflow for File Processing and Communication
- A server for finding information using Google Search
- An analytics platform for tracking and understanding website and app performance
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/jikime/py-mcp-google-toolbox'
If you have feedback or need assistance with the MCP directory API, please join our Discord server