Skip to main content
Glama
JavierPrior845

Google Calendar MCP Server

list_events

Get Google Calendar events for a chosen day or range, or view the current week by default. Specify dates to filter results.

Instructions

Lista eventos de Google Calendar. Por defecto muestra la semana actual. Puedes especificar un rango de fechas o un solo día.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoFecha específica (YYYY-MM-DD). Si se proporciona, lista eventos de ese día.
endDateNoFecha de fin del rango (YYYY-MM-DD).
startDateNoFecha de inicio del rango (YYYY-MM-DD).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals that the default is the current week and that filtering by date range or single day is possible. However, it does not describe the returned data structure, pagination, timezone handling, or whether only basic event details are returned.

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, front-loaded with the core purpose and containing zero fluff. It conveys the main action, the default behavior, and the available filtering options efficiently.

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-only listing tool with three optional parameters and no output schema, the description provides sufficient context to invoke it correctly: default behavior and parameter use. It could be improved by mentioning what event fields are returned, but this is not critical for basic invocation.

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 description coverage is 100%, with all three parameters (date, startDate, endDate) already explained in the schema. The description adds only minimal value by reinforcing that a range or single day can be specified, which is essentially redundant with 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?

The description states a specific verb and resource: 'Lista eventos de Google Calendar' (lists Google Calendar events). It clearly distinguishes this tool from siblings like create_event, reschedule_event, and delete_or_cancel_event, which all involve other actions. The default behavior and optional filters are also 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 description implies usage by explaining the default current-week behavior and acceptable parameters (date range or single day). However, it does not explicitly compare with alternatives or state when not to use this tool, leaving the agent to infer when to choose list_events over siblings like detect_conflicts or find_free_slots.

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