mcp-google
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GOOGLE_CLIENT_ID | Yes | OAuth2 client ID from Google Cloud Console | |
| GOOGLE_ACCOUNTS_JSON | Yes | JSON array of account configs, e.g. [{"email": "...", "refresh_token": "..."}] | |
| GOOGLE_CLIENT_SECRET | Yes | OAuth2 client secret |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| calendar_todayA | Get today's calendar events. Args: account: Email address of the account to use. Omit for default account. |
| calendar_weekA | Get this week's calendar events (Monday through Sunday). Args: account: Email address of the account to use. Omit for default account. |
| calendar_create_eventA | Create a calendar event. Args: title: Event title/summary. start: Start time in ISO 8601 format (e.g. "2025-03-20T10:00:00-03:00"). end: End time in ISO 8601 format (e.g. "2025-03-20T11:00:00-03:00"). account: Email address of the account to use. Omit for default account. |
| gmail_list_unreadA | List unread emails with subject, sender, date, and snippet. Args: account: Email address of the account to use. Omit for default account. max_results: Maximum number of messages to return (default 20, max 100). |
| gmail_get_messageA | Get full email content by message ID. Args: message_id: The Gmail message ID (from gmail_list_unread). account: Email address of the account to use. Omit for default account. |
| gmail_sendB | Send an email. Args: to: Recipient email address. subject: Email subject line. body: Plain text email body. account: Email address of the account to use. Omit for default account. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool targets a distinct resource and action: calendar lookups vs. creation, and Gmail listing vs. reading vs. sending. There is no overlap or ambiguity between tool purposes.
All tools follow a consistent snake_case pattern with a clear service prefix (`calendar_` for calendar actions, `gmail_` for email actions). The naming is predictable and easy to infer.
With 6 tools split across two Google services, the count is well-scoped and each tool provides essential functionality without unnecessary bloat. This is a focused, practical surface.
Core workflows are covered: viewing calendar events, creating events, listing/reading/sending email. Minor gaps exist such as no calendar update/delete or Gmail search/mark-as-read, but these are workable for most common use cases.