Skip to main content
Glama

Framezone

Delete workout sets

delete_workout_sets
Destructive

Remove sets from a session without touching the session itself. Use duplicates_only to undo a log that was sent twice, or exercise to drop one movement that was entered by mistake.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
exerciseNoRemove every set of this movement from the session, e.g. "leg press"
workout_idNoSession id — required only when a date carries more than one session
workout_dateNoSession date (Y-m-d, defaults to today)
duplicates_onlyNoRemove blocks that repeat an identical earlier block in the same session — the fix for a log sent twice. Keeps the first occurrence.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

The destructive annotation already warns about mutating behavior, and the description adds valuable scoping: deleting sets does not delete the session, and duplicate removal keeps the first occurrence. This is consistent with annotations, with no contradiction.

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 sentences, front-loaded with the core action, and every clause earns its place by clarifying scope or usage. No redundancy or filler.

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?

The description covers the main scenarios and effectively communicates the destructive scope. A minor gap is that all parameters are optional per the schema, and the description does not state what happens if neither exercise nor duplicates_only is provided; however, the parameter docs handle most formatting and defaults.

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 the baseline is 3, but the description adds meaningful purpose to the parameters: duplicates_only maps to undoing a double-sent log and exercise maps to removing a mistaken movement. This helps an agent choose the right parameter more confidently.

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 ('Remove') and a precise resource ('sets from a session'), while explicitly scoping the behavior with 'without touching the session itself.' This clearly distinguishes it from a full-session deletion tool like delete_workout.

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?

It gives explicit usage scenarios: 'duplicates_only' for a log sent twice and 'exercise' to drop an incorrectly entered movement. It does not explicitly name a sibling like delete_workout as the alternative for deleting the whole session, though 'without touching the session itself' implies that boundary.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources