Skip to main content
Glama
jonas-theobald

garmin-mcp-bridge

delete_planned_workout

Remove a scheduled workout from your Garmin calendar by its event ID. Cancels planned training events synced through the bridge.

Instructions

Delete a calendar event by its numeric id (from list_planned_workouts).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/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 burden of behavioral disclosure. It states the action (delete) but does not disclose whether deletion is permanent, reversible, or requires confirmation, nor what happens to associated data. For a destructive operation with zero annotation coverage, this is a significant gap.

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?

The description is a single sentence with no wasted words. It front-loads the action and resource, then provides the key parameter source. Every word earns its place.

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?

For a simple one-parameter delete tool, the description is mostly complete: it names the action, the resource, and where to get the id. However, it lacks any mention of return behavior or error conditions, and with no annotations or output schema, an agent cannot know what to expect after a successful deletion.

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 description must compensate. It adds meaning by specifying that event_id is a 'numeric id' and that it comes from list_planned_workouts, which is helpful. However, it does not explain the format, range, or any constraints beyond the schema's integer type.

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?

The description states a specific verb ('Delete') and resource ('a calendar event'), and identifies the id source ('from list_planned_workouts'), which distinguishes it from sibling tools like create_planned_workout and list_planned_workouts. It is clear but does not explicitly name sibling alternatives.

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

Usage Guidelines3/5

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

The description implies usage context by referencing list_planned_workouts as the source of the id, which tells the agent where to get the required parameter. However, it does not explicitly state when to use this tool versus alternatives or mention any prerequisites or consequences.

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