Skip to main content
Glama

calendar.events.update

Update an existing calendar event by patching its title, time, entity, or other fields; invalid changes like end before start are rejected.

Instructions

SIDE-EFFECTFUL. Patch an existing event (move it, retitle it, re-home it to a different entity, etc.). The merged result is re-validated — shrinking ends_at below starts_at throws. Returns {event}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesEvent id.
typeNoFreeform event type, e.g. 'downtime', 'maintenance', 'delivery'.
notesNoOptional free-text notes.
titleNoShort title for the event.
entityNoMove the event to a different entity — name or numeric id.
sourceNoFreeform provenance, e.g. 'email from ops team'.
ends_atNoISO 8601 timestamp with explicit timezone.
starts_atNoISO 8601 timestamp with explicit timezone.
original_timezoneNoIANA timezone the window was originally communicated in, for display.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv4.7.2

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does well: it flags SIDE-EFFECTFUL, explains that the merged result is re-validated, and warns that shrinking ends_at below starts_at throws. It also states the return shape `{event}`. It could add permission or conflict details, but the core behavioral risks are disclosed.

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?

Two tight sentences, front-loaded with the safety-critical SIDE-EFFECTFUL marker, then examples, validation behavior, and return shape. Every sentence earns its place with no redundancy.

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?

The schema fully documents all 9 parameters, and the description covers patch semantics, validation, and return value. It is complete enough for a straightforward partial update; missing niceties like auth requirements or conflict behavior are not essential for invoking it correctly.

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 a cross-parameter constraint not present in the schema: the merged result is re-validated and shrinking ends_at below starts_at throws. This gives meaningful semantics beyond the individual field descriptions.

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 uses a specific verb and resource: 'Patch an existing event', and gives concrete examples (move it, retitle it, re-home it). This clearly distinguishes it from sibling tools like calendar.events.add, calendar.events.delete, and calendar.events.list.

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?

It clearly states this is for modifying an existing event, not creating or deleting one. It doesn't explicitly name alternatives or exclusion conditions, but the context is clear enough that an agent can route to it versus add/delete/list.

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