Skip to main content
Glama

calendar_delete_event

Delete a calendar event permanently. Use confirm=true to execute, confirmSeries=true for recurring series; without confirm it previews the event.

Instructions

Delete an event. THIS CANNOT BE UNDONE — Google Calendar keeps no trash for events. Without confirm: true it changes nothing and returns the event it would delete, so the decision is made against the real title and time. A recurring series id is refused unless confirmSeries is true.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accountYesConfigured Gmail account alias, e.g. work, personal, support.
confirmNoMust be true to actually delete.
eventIdYesEvent id, as returned by calendar_list_events.
calendarIdNoCalendar id; defaults to "primary".
sendUpdatesNoWhether Google mails the guests about the cancellation. Defaults to "none".
confirmSeriesNoRequired to delete a recurring series, which removes every occurrence.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.6/5.0
Behavior5/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 thoroughly discloses irreversibility (no trash), the confirm flag's dry-run behavior, and the refusal of recurring series without confirmSeries. This is exemplary transparency for a destructive operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, with the most critical warning front-loaded. The second sentence is dense but packs essential behavior. No filler; every clause adds value. Slightly long but justified.

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?

For a destructive tool with no annotations and no output schema, the description is remarkably complete. It covers the core action, the confirm mechanism, the recurring series edge case, and even hints at the return value when not confirmed. An agent has everything needed to invoke it correctly.

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

Parameters4/5

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

Schema coverage is 100%, so baseline is 3. The description adds meaningful semantics beyond the schema for confirm (explaining it must be true to delete and that false returns the event) and confirmSeries (explaining it removes every occurrence). This elevates it above the baseline.

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 clearly states the action ('Delete an event') and the resource. It distinguishes from siblings like calendar_update_event and calendar_respond_to_event by focusing on deletion. The additional context about irreversibility and confirm flags further clarifies its specific role.

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 implies when to use it (to delete an event) and provides key usage conditions: the need for confirm:true and confirmSeries for recurring events. While it doesn't explicitly name alternatives or say 'use this when...', the context makes the intended use clear.

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