Skip to main content
Glama
JavierPrior845

Google Calendar MCP Server

create_event

Create a Google Calendar event by specifying a title, start, and end time. Add an optional description to provide more context about the event.

Instructions

Crea un nuevo evento en Google Calendar.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endTimeYesFecha y hora de fin en formato ISO 8601 (ej. 2026-08-12T11:00:00+02:00)
summaryYesTítulo del evento
startTimeYesFecha y hora de inicio en formato ISO 8601 (ej. 2026-08-12T10:00:00+02:00)
descriptionNoDescripción del evento (opcional)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/5.0
Behavior1/5

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

With no annotations to rely on, the description carries the full burden. It only states the basic action of creating an event and does not mention side effects, permissions, return values, or potential errors. This is minimal disclosure.

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 a single, clear sentence with no redundant words. It is appropriately concise for the simple create operation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is adequate for a basic create action, but it lacks context about potential conflicts, authentication requirements, or the result of creation. Since there is no output schema, the description does not need to explain return values, but a bit more operational context would improve completeness.

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% (all parameters have descriptions with format and meaning). The description text itself adds no additional semantic value beyond the schema, so the baseline of 3 is appropriate.

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?

The description states a specific verb ('creates') and resource ('event in Google Calendar'), clearly indicating the action. However, it does not explicitly name a sibling tool it is not, so it falls slightly short of a perfect 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines1/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It does not mention conditions, prerequisites, or scenarios that would favor this tool over sibling tools like reschedule_event 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.