Skip to main content
Glama

Create an event

create_event

Create a Google Calendar event with title, start, end, attendees, and recurrence. If no account is specified and multiple could write, it returns AMBIGUOUS_ACCOUNT, so ask which calendar to use.

Instructions

Create an event on one account. If account is omitted and more than one account could take the write, this fails with AMBIGUOUS_ACCOUNT - ask the user which calendar to use rather than picking one.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endYesEnd time, ISO 8601.
startYesStart time, ISO 8601. Interpreted in `timezone` if it has no offset.
titleYesEvent title.
accountNoThe account id to act on, e.g. "work". If omitted, the server uses the only eligible account, or returns AMBIGUOUS_ACCOUNT so you can ask the user which one to use. Never guess.
all_dayNoCreate an all-day event.
calendarNoCalendar id. Defaults to the account's configured default calendar ("primary" unless changed).
locationNo
timezoneNoIANA timezone for interpreting and displaying times, e.g. "Asia/Jakarta". Defaults to the server timezone.
attendeesNoAttendee email addresses. Invitations are only emailed if send_updates is set.
recurrenceNoRRULE strings, e.g. ["RRULE:FREQ=WEEKLY;BYDAY=MO"].
descriptionNo
send_updatesNoWho to email about this change. Defaults to "none" - never notify people unless the user asked you to.
reminder_minutesNoPopup reminder, minutes before start.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

The description adds critical behavioral context beyond the annotations: the AMBIGUOUS_ACCOUNT failure mode when `account` is omitted, and the instruction not to guess. Annotations correctly declare a non-destructive, non-idempotent write operation, and the description does not contradict them. However, it omits other useful behaviors — e.g., the default 'none' for send_updates (though that is in the schema) and whether the event is immediately visible or requires confirmation.

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?

Two sentences with zero waste. The main action is front-loaded, and the failure-mode guidance is directly attached to the condition that triggers it. Every part of the description earns its place.

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 13-parameter creation tool with 85% schema coverage and no output schema, the description covers the most agent-critical behavioral nuance: account ambiguity failure. It doesn't mention the return value (event ID) or default notification behavior, but those are largely covered by the schema. The description is complete enough for an agent to call correctly and handle the main error case.

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 85%, so the schema already documents most parameters (account, send_updates, timezone, recurrence, etc.). The description reinforces the account parameter's fallback behavior but doesn't add syntax or format details for other parameters beyond what the schema provides. Baseline 3 is appropriate when the schema does the heavy lifting.

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 a specific verb+resource ('Create an event') and adds a scope qualifier ('on one account') that distinguishes it from sibling tools like update_event, move_event, or propose_schedule. An agent can tell this is for direct event creation without opening the schema.

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 clearly states the when-not condition — if `account` is omitted and multiple accounts are eligible, it fails with AMBIGUOUS_ACCOUNT and the agent should ask the user rather than guess. It does not explicitly name alternative tools (e.g., update_event, propose_schedule), but the guidance on account selection is clear and actionable.

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