Skip to main content
Glama

cancel_meeting

Cancel a scheduled employee meeting by submitting employee ID, ISO date/time, and topic to receive confirmation.

Instructions

Cancel a scheduled meeting for an employee.
:param employee_id: Employee ID
:param meeting_datetime: Date and time in ISO format (YYYY-MM-DD HH:MM:SS)
:param topic: Topic of the meeting (optional)
:return: Confirmation message

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topicYes
employee_idYes
meeting_datetimeYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It says only ':return: Confirmation message' and never discloses whether cancellation is reversible, what permissions are required, or what happens when the employee or meeting cannot be found. For a destructive mutation tool this is a substantial gap.

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?

The purpose is front-loaded in the first line and the rest is compact. The raw ':param'/':return' docstring markers are mildly noisy but each line carries parameter information, so little is wasted.

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?

An output schema exists, so return-value detail is not strictly needed. However, for a destructive tool with no annotations and a required/optional mismatch between text and schema, the description leaves an agent unsure about failure behavior and permissions.

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 0%, so the text must compensate. It adds a real format detail for meeting_datetime (ISO format YYYY-MM-DD HH:MM:SS) that the schema lacks, but 'Employee ID' adds nothing, and its claim that topic is optional directly conflicts with the schema, which lists topic as required.

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?

States a specific verb and resource ('Cancel a scheduled meeting for an employee'), so an agent immediately knows what the tool does. It does not, however, distinguish itself from siblings like schedule_meeting or get_meetings, and gives no hint about the effect (does the meeting disappear from get_meetings?).

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

Usage Guidelines2/5

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

There is no guidance on when to use this versus schedule_meeting, get_meetings, or rescheduling. No prerequisites, no mention of what happens if the meeting does not exist, and no exclusion conditions. Usage is only implied by the name.

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