Skip to main content
Glama
KapilXDev
by KapilXDev

delete_event

Remove a calendar event by ID after user confirmation. Enables direct event deletion through the MCP server for clean schedule management.

Instructions

Delete a calendar event by id. Confirm with the user before calling.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYesid returned by list_events.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. The confirmation instruction is useful and indicates the destructive nature of the operation, but the description does not state permanence, side effects, or authorization requirements, leaving some gaps.

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 short sentences, no filler, with the core action first and the important safety instruction second. Every word 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 simple one-parameter delete tool with an output schema, the description covers the essential action and the required user confirmation. Minor missing context includes irreversible effects or error behavior, but these are not critical for an agent to invoke the tool correctly.

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?

The input schema already documents event_id with 100% coverage: the parameter is described as the id returned by list_events. The description adds no additional parameter meaning beyond saying 'by id', so the baseline score of 3 is appropriate.

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 uses a specific verb ('Delete') and resource ('calendar event') and specifies the method ('by id'). It clearly distinguishes this from sibling tools like list_events and create_event.

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 provides an explicit prerequisite: confirm with the user before calling. It does not name alternative tools, but the delete action is self-evident and the confirmation requirement supplies a clear when-not-to-call condition.

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