Skip to main content
Glama
turnnoblindeye

Wellness Project MCP

delete_workout

DestructiveIdempotent

Permanently delete a workout session and all its exercises and sets. Specify a session ID or date plus workout name to remove the logged workout.

Instructions

Permanently delete a workout session and all its exercises and sets. Use when the user wants to remove a logged workout entirely.

FIND THE SESSION: pass session_id if already known. Otherwise pass session_date (YYYY-MM-DD, defaults to today) and, only if more than one session was logged that day, name (a substring of the workout's focus/type, e.g. "Push" or "Leg Day", case-insensitive) to narrow it down. This action is irreversible and removes the session, all supersets, and all sets — a match that isn't exactly one session returns an error explaining why, with nothing deleted; retry with session_id or a narrower name, never guess.

SAVED WORKOUTS: pass saved_workout_id to delete a reusable Saved Workout instead of completed workout history.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoSubstring of the workout's focus/type (e.g. "Push", "Leg Day"), case-insensitive, to disambiguate multiple sessions on the same date. Only used when session_id is omitted.
session_idNoSession ID, if already known. Alternative to session_date + name — see FIND THE SESSION above.
session_dateNoDate the session was logged. Format: YYYY-MM-DD. Used with name to find the session when session_id is omitted; defaults to today if both are omitted.
saved_workout_idNoSaved Workout ID to delete. When present, deletes the reusable prescription and does not touch completed workout history.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYesHuman-readable result text returned by the tool.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv1.2.1

TDQS

A5/5.0
Behavior5/5

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

The annotation destructiveHint=true is reinforced by the description's use of 'Permanently delete' and 'irreversible.' The description also explains the idempotent behavior (if no unique match, nothing is deleted and an error is returned), which aligns with idempotentHint=true. No contradictions exist between the description and annotations.

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 well-structured with clear sections: the primary purpose, FIND THE SESSION, and SAVED WORKOUTS. It avoids redundancy and each sentence adds necessary information. The use of bold labels and concise bullets (though not bullets) makes it easy to parse. Despite being lengthy, it is efficiently organized and not verbose.

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?

The description fully covers the decision tree for selecting parameters: session_id vs session_date+name, defaults, the saved_workout_id alternative, and the error case (no unique match). It also states the destructive and irreversible nature, leaving no ambiguity for an agent. Given the moderate complexity (4 params, 0 required, with defaults and alternatives), the description is complete.

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

Parameters5/5

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

All four parameters are fully described in the schema, and the description adds valuable context beyond the schema. For example, session_id is described as an 'Alternative to session_date + name,' session_date includes format and default, name explains substring/case-insensitivity and when it applies, and saved_workout_id clarifies its distinct purpose. The description references the FIND THE SESSION section for cross-guidance, making semantics clear.

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 verb and resource: 'Permanently delete a workout session and all its exercises and sets.' It also explicitly says 'Use when the user wants to remove a logged workout entirely,' providing unambiguous intent. The distinction between completed workout history and reusable saved workouts is also clarified.

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

Usage Guidelines5/5

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

The description gives explicit usage guidance: it instructs when to use the tool and how to select the correct target. It explains the two identification paths (session_id vs session_date + name), the default for session_date, and the alternative for saved_workout_id. It also states the error behavior when no unique match exists, so the agent knows when to retry or use a different parameter.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/turnnoblindeye/wellness-project-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server