Skip to main content
Glama
rsc1102

Google Calendar MCP Server

by rsc1102

list_events

Fetch a filtered list of Google Calendar events by specifying criteria such as summary, description, location, and time range, with a configurable maximum result limit.

Instructions

Retrieve a list of calendar events based on specified filters.

This function queries the calendar for events that match the given criteria. All filter parameters are optional and can be used in combination to narrow down the results.

Args: summary (str, optional): Filter events by their summary (title or subject). description (str, optional): Filter events by text found in the event description. location (str, optional): Filter events based on their location. timeMin (str, optional): ISO 8601 formatted lower time bound (exclusive) for filtering events by end time. Must be in local time and have timezone offset. timeMax (str, optional): ISO 8601 formatted upper time bound (exclusive) for filtering events by start time. Must be in local time and have timezone offset. maxResults (int, optional): Maximum number of events to return.

Returns: list: A list of event objects that match the provided filters.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
summaryNo
timeMaxNo
timeMinNo
locationNo
maxResultsNo
descriptionNo
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses that the tool queries the calendar and returns a list of matching events. It also explains the exclusive time-bound semantics and the requirement for local time with timezone offset, adding useful behavioral context beyond a simple 'list events' statement.

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 well-structured with an introductory sentence and a clean Args list. It is appropriately sized for a tool with six parameters, and every line conveys relevant information without redundancy.

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?

Given the tool's complexity (six optional parameters, no output schema, no annotations), the description covers all essential aspects: parameter semantics, time format requirements, filter combination, and the return type. It provides enough information for an agent to invoke the tool correctly without further documentation.

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

Parameters5/5

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

The schema has 0% description coverage, so the description fully compensates with a detailed Args section. It explains the meaning of each parameter (summary, description, location, timeMin, timeMax, maxResults) and includes format constraints, adding significant value beyond the raw 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 opens with 'Retrieve a list of calendar events based on specified filters,' which is a specific verb+resource statement. It clearly distinguishes this read-oriented list tool from sibling tools like create_event, delete_event, and update_event.

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 provides clear context for when to use the tool (when retrieving filtered calendar events) and explains that filters are optional and combinable. However, it does not explicitly mention when not to use it or name alternatives, though sibling tool names make the distinction obvious.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rsc1102/Google_Calendar_MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server