Skip to main content
Glama

Update calendar event

update_calendar_event

Update one Google Calendar event — change its title (summary), description, location, or start/end times. Only the fields you pass change; everything else stays. Get the event's id (and its calendar_id, if it isn't on the primary calendar) from get_calendar_events first. Use only when the user asked for the change — edits land on their real calendar immediately, and other attendees can see them. start/end are RFC3339 timestamps ('2026-08-25T19:00:00-04:00').

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endNoNew end, RFC3339 dateTime.
startNoNew start, RFC3339 dateTime.
accountNoEmail address of the connected Google account holding the event. Omit to use the account with calendar access.
summaryNoNew event title.
event_idYesThe event id from get_calendar_events.
locationNoNew location.
calendar_idNoThe calendar holding the event (from list_google_calendars). Omit for primary.
descriptionNoNew description.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations only mark readOnlyHint false, so the description adds meaningful behavioral context: edits affect the real calendar immediately, other attendees can see them, and only the provided fields change rather than a full replace. This discloses side effects and partial-update behavior beyond what annotations convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four sentences, each earning its place: the core action, partial-update semantics, prerequisite lookup, usage gate and side effects, then the timestamp format. The description is front-loaded with the most important information and contains no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a side-effecting update tool with no output schema, the description covers prerequisites, side effects, partial-update behavior, and the timestamp format. It does not explain the response value, but that is less critical for a mutation tool and the parameter schema is fully documented.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds value by explaining that start/end are RFC3339 timestamps with an example, and by clarifying that event_id and calendar_id come from get_calendar_events. It also reinforces that unpassed fields remain unchanged, which helps interpret the optional parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb (Update), a specific resource (one Google Calendar event), and the exact fields that can be changed (title, description, location, start/end times). It also clearly implies the distinction from creating a new event by focusing on editing an existing event identified by event_id.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit context: only use when the user asked for the change, and first fetch event_id (and calendar_id when needed) via get_calendar_events. The 'only when the user asked for the change' instruction clarifies the appropriate trigger, but it does not explicitly name create_calendar_event as the alternative for creating a new event.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action, with clear boundaries even within overlapping domains like LinkedIn (search vs. free-form query vs. profile vs. summary) and graph deletion (soft single, bulk soft, permanent single). Descriptions explicitly cross-reference related tools to prevent misselection.

Naming Consistency4/5

The vast majority follow a consistent verb_noun pattern (get_, list_, search_, create_, delete_, etc.). A few noun-phrase exceptions like linkedin_analytics, mutual_connections, similar_objects, and what_needs_attention deviate slightly, but they are still descriptive and do not create confusion.

Tool Count2/5

At 66 tools this is far beyond the 25+ threshold considered too many, even though the server covers many integration domains. Each domain has a coherent subset, but the overall surface is heavy for agents to navigate and would benefit from consolidation or namespacing.

Completeness4/5

The set provides deep read/search coverage across Gmail, Slack, Calendar, LinkedIn, HubSpot, Obsidian, Twitter, and a graph store, with core write operations for calendar, drafts, Slack, and graph objects. Minor gaps exist—notably no calendar delete, no direct Gmail send to third parties (only drafts), and no LinkedIn post/message actions—but these appear deliberate and do not block typical workflows.