Skip to main content
Glama
rsc1102

Google Calendar MCP Server

by rsc1102

create_event

Create a Google Calendar event by providing start time, end time, timezone, and summary. Optionally add a description and location.

Instructions

Creates a calendar event using the provided details.

Args: start (str): Event start time in ISO 8601 format (e.g., '2025-04-06T10:00:00-07:00'). end (str): Event end time in ISO 8601 format (e.g., '2025-04-06T11:00:00-07:00'). timeZone (str): User timezone formatted as an IANA Time Zone Database name (e.g. "Europe/Zurich"). summary (str): Short title or subject of the event. description (str, optional): Detailed description or notes for the event. Defaults to None. location (str, optional): Physical or virtual location of the event. Defaults to None.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endYes
startYes
summaryYes
locationNo
timeZoneYes
descriptionNo
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states it creates an event but does not mention required permissions, side effects (e.g., sending invitations), success/failure responses, or any mutation-related caveats. The lack of such context is a notable gap for a create operation.

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 compact: a one-sentence purpose followed by a structured Args list. It is front-loaded with the action and then efficiently details each parameter without redundancy.

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?

The description covers the action and parameter semantics well, but lacks any mention of return value or error handling, and the tool has no output schema. Given there are six parameters and no annotations, the gap is minor; the essential invocation details are present.

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?

Schema description coverage is 0%, but the description thoroughly compensates by documenting every parameter: ISO 8601 format with examples for start/end, IANA timezone for timeZone, and defaults for optional description/location. This adds significant meaning beyond the bare 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 'Creates a calendar event using the provided details,' which clearly identifies the action (create) and the target resource (calendar event). This distinguishes it from sibling tools like list_events, update_event, and delete_event.

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 tool's usage is implied by its name and the verb 'creates,' but there is no explicit guidance on when to choose this over update_event (e.g., for new events) or any exclusions. No alternatives are mentioned.

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