Skip to main content
Glama
deciduus
by deciduus

Quick-add an event

quick_add_event

Parse a plain-English phrase to create a calendar event. Optionally set the target calendar and account.

Instructions

Create an event from a plain-English phrase, parsed by Google.

Google interprets the date, time and title itself, in the calendar's own timezone. Check the returned start/end and tell the user what was booked -- the parser guesses, and does not handle attendees or descriptions.

Args: text: The phrase to parse, e.g. 'Dentist Thursday 9am' or 'Team sync every Monday at 10 for 30 minutes'. calendar_id: Calendar to create the event on. account: Account name from 'calendar-mcp accounts'; omit for the default.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes
accountNo
calendar_idNoprimary

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
eventYesThe event after the operation.
messageNoOne-line human-readable summary of what happened.
calendar_idYesCalendar the event lives on.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

A4.8/5.0
Behavior5/5

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

Annotations only declare read-only false and open-world true; the description adds meaningful behavioral context: Google performs the parsing, the calendar's own timezone is used, the parser guesses and may be wrong, attendees/descriptions are unsupported, and the agent should verify the returned start/end. No contradiction with annotations.

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?

Three short blocks with no fluff: the core purpose is front-loaded, behavioral caveats follow, and the Args section is clean. Every sentence earns its place.

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?

The tool is simple (3 params, 1 required), and the description covers all parameters, timezone behavior, parser limitations, and the need to verify the returned time. With an output schema present, the description is complete enough for an agent to call and interpret this tool correctly.

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%, so the description carries the full parameter burden. It explains text with concrete examples, calendar_id as the target calendar, and account as a named account from 'calendar-mcp accounts' with an omit-for-default instruction. This adds real 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 first sentence states a specific verb ('Create'), a resource ('an event'), and the distinctive mechanism ('parsed by Google'). It also differentiates from sibling create_event by noting that attendees and descriptions are not handled, so an agent can tell them apart without opening either 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 makes the intended use case explicit: turning plain-English phrases into events, with the caveat that the parser guesses and does not support attendees or descriptions. It also gives account-selection guidance via 'calendar-mcp accounts', though it does not explicitly name the structured alternative.

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