Skip to main content
Glama
bartosz-kuc

honest-calendar-mcp

list_events

Retrieve events from a calendar within a specified time range. Returns event ID, summary, start, end, location, and attendees; default calendar is 'primary'.

Instructions

List events in a calendar within a time range. Returns event id, summary, start, end, location, attendees. Default calendar is 'primary'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNoFree-text search filter
time_maxYesRFC3339
time_minYesRFC3339 (e.g. 2026-07-22T00:00:00+02:00)
calendar_idNoprimary
max_resultsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It does disclose the returned field set and the default calendar behavior, which is real value since no output schema exists. It omits pagination/truncation behavior, which matters for a list tool capped at 250 results with a default of 50.

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

Conciseness4/5

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

Three short, front-loaded sentences: purpose, then return fields, then default. Every sentence carries information and nothing is padded, though the return-field enumeration reads as a list rather than integrated prose.

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-list tool with 5 parameters at 60% schema coverage and no annotations or output schema, the description covers the essentials: what it lists, the time-range scope, and what comes back. The main gap is that pagination/result-limit behavior is left entirely to the schema.

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 60% and the schema itself documents query, time_max, time_min formats. The description adds only time-range framing and the 'primary' default, neither of which goes beyond the schema (calendar_id already has default 'primary'). No meaning is added for query or max_results.

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

Purpose4/5

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

States a specific verb ('List') and resource ('events in a calendar') plus the scoping constraint ('within a time range'), which distinguishes it from the singular get_event sibling. It stops short of naming any sibling explicitly, so differentiation is inferred rather than stated.

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 'within a time range' phrasing implies when this tool applies, and the required time_min/time_max reinforce that. However, there is no explicit guidance on when to prefer this over get_event or list_calendars, and no exclusions or prerequisites are given.

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