Skip to main content
Glama

Change fields of an owned event

update_event
Idempotent

Update an event owned by the authenticated user. Pass id plus any fields to change. start and end are ISO 8601 date-time with offset, or YYYY-MM-DD for an all-day event in the event timezone. A missing id and an id owned by someone else both return not found. waitSync defaults to true and waits for the external calendar so the response can include links; false responds immediately and links may be absent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesEvent id owned by the authenticated user; any other id returns not found
endNoISO 8601 date-time with offset, or YYYY-MM-DD for an all-day event in the event timezone
descNoDescription (up to 1000 characters)
typeNoevent is a timed item; task is a to-do without a duration
rruleNoiCalendar RRULE string for a repeating event
startNoISO 8601 date-time with offset, or YYYY-MM-DD for an all-day event in the event timezone
titleNoEvent or task title (1–200 characters)
allDayNoTrue when start and end are calendar dates without a time
statusNoEvent status: active, done, undone, or cancelled
locationNoShort place name
timezoneNoIANA timezone of the event; stored as-is, not replaced by the user timezone
waitSyncNoWait for the external calendar so the response can include links; default true
calendarIdNoCalendar that owns the event; omit for the default calendar

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesEvent id
endNoEnd in the user timezone (ISO 8601)
descNoDescription
typeNoevent is a timed item; task is a to-do without a duration
linksNoExternal calendar links when sync has finished
rruleNoiCalendar RRULE string when the event repeats
startNoStart in the user timezone (ISO 8601)
titleYesEvent or task title
allDayNoTrue when the event is a calendar date without a time
statusNoEvent status: active, done, undone, or cancelled
locationNoShort place name
timezoneNoIANA timezone stored on the event
createdAtNoWhen the event was created (ISO 8601)
updatedAtNoWhen the event was last changed (ISO 8601)
calendarIdNoCalendar that owns the event

Schema Changelog

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

  1. First observed

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already mark this as a mutating, idempotent, non-destructive call. The description adds meaningful behavior beyond that: missing/foreign ids return not found, waitSync controls waiting for the external calendar and whether links are present, and date-time formats for all-day events. No contradiction with annotations.

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 compact sentences, front-loaded with the core action, followed by the most decision-relevant details (date formats, error behavior, sync default). No filler or redundancy.

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

Completeness5/5

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

For a 13-parameter mutation tool, the description covers the essential call contract: ownership restriction, patch semantics, date formats, not-found errors, and waitSync behavior. The output schema exists, so return-value details are not required here, and the parameter schema documents the remaining fields.

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 coverage is 100%, so the baseline is 3. The description adds the partial-update semantics ('Pass id plus any fields to change') and re-emphasizes the start/end ISO/all-day constraint and waitSync consequence, which adds some meaning beyond the schema even though much is duplicated.

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 names a specific operation ('Update'), a specific resource ('an event owned by the authenticated user'), and a clear contract ('Pass id plus any fields to change'). This is distinct from create_event, delete_event, and set_event_status because it scopes to owned events and field-level modification.

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

Usage Guidelines3/5

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

The description clearly implies when to use the tool: to modify an existing event the caller owns. However, it never states alternatives or exclusions, such as choosing set_event_status for a status-only change or create_event for new events, leaving sibling routing to inference.

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.

Resources