Skip to main content
Glama

Calendar: Get event

calendar_get_event
Read-onlyIdempotent

Get one event using both its exact parent calendar_id and event_id. Never identify an event only by title or date.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYesExact event ID returned by calendar_list_events or calendar_create_event, paired with its parent calendar_id. Calendar event ID: Exact event id in the selected calendar/account. Obtain with: calendar_list_events -> event.id; calendar_create_event -> created event.id Never pass: event title, date.
account_idNoOptional Nilyo connection ID (unipile_account_id from list_connected_accounts). Omit when the user has one account for this provider. When several exist, Nilyo never guesses: list them (display name, identifier, provider user ID), choose the one the user named or ask, and pass its ID here.
calendar_idYesExact calendar ID returned by calendar_list_calendars; never pass a calendar name. Calendar ID: Exact Google/Microsoft calendar id. Obtain with: calendar_list -> calendar.id Never pass: calendar display name.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds value by emphasizing the exact-ID requirement and the pairing of calendar_id with event_id, which is a behavioral constraint beyond the annotations. It doesn't describe return format, but for a simple get operation with no output schema, the annotations plus the ID-pairing warning are sufficient. 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?

The description is two sentences with zero waste. The first sentence states the action and required parameters; the second sentence is a critical negative instruction. It is front-loaded with the core purpose and the exclusion is immediately actionable. Every word earns its place.

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 simple read operation with 100% schema coverage and readOnly/idempotent annotations, the description is nearly complete. It covers the key usage constraint (exact IDs, not title/date) and the parameter pairing. The only minor gap is that it doesn't mention what happens if the event is not found or the return shape, but with no output schema and a simple get, this is a minor omission. The account_id disambiguation is handled in the schema, so the description doesn't need to repeat it.

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 schema already documents all three parameters thoroughly. The description adds a concise summary of the key constraint (exact parent calendar_id and event_id) and the 'never by title or date' rule, which reinforces the schema. The account_id parameter is well-documented in the schema with disambiguation guidance. The description doesn't need to add more since the schema is exhaustive.

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 ('Get'), a specific resource ('one event'), and the exact identifiers required ('exact parent calendar_id and event_id'). It also explicitly distinguishes from identifying by title or date, which differentiates it from sibling tools like calendar_list_events or calendar_resolve_event. This is a clear, unambiguous purpose statement.

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

Usage Guidelines5/5

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

The description explicitly says 'Never identify an event only by title or date,' providing a clear exclusion. The parameter descriptions further reinforce when to use this tool: use exact IDs from calendar_list_events or calendar_create_event, and never pass title/date. This is strong usage guidance that prevents common agent errors.

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.