Skip to main content
Glama

Read an event

get_event
Read-only

Retrieve full details of a calendar event, including its body and attendee response status, using the event ID from list_events.

Instructions

Read one calendar event in full, including its body and the response status of each attendee, by the id list_events returned.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYesid from list_events

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds useful detail about the response contents (body and attendee response status), but does not go further into error or edge cases. This is acceptable given the simple read-only nature.

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?

A single, front-loaded sentence that communicates the action, resource, result contents, and ID provenance with no wasted words.

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 one-parameter read-only tool with safety annotations, the description is complete: it names the source of the identifier and the key contents returned. No critical information for invoking it correctly is missing.

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

Parameters3/5

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

Schema coverage is 100%, with event_id already documented as 'id from list_events'. The description repeats this same guidance, so it adds no new semantic value beyond the schema.

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?

States a specific verb ('Read'), a specific resource ('one calendar event'), and the distinguishing scope ('in full, including its body and the response status of each attendee'). It clearly differentiates from sibling tools like list_events and get_message.

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 indicates the correct input source ('by the id list_events returned'), which implies the prerequisite workflow of listing events first. It does not explicitly exclude alternatives, but the context is clear for a single-event read.

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