Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
GOOGLE_CLIENT_IDYesOAuth2 client ID from Google Cloud Console
GOOGLE_ACCOUNTS_JSONYesJSON array of account configs, e.g. [{"email": "...", "refresh_token": "..."}]
GOOGLE_CLIENT_SECRETYesOAuth2 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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.1/5.0

Scored across 6 tools

Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness4/5

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.

Maintenance

ActivityMaintained
ResponsivenessWithin a week