Skip to main content
Glama
nitinchakravarthy

Workout Tracker MCP Server

get_all_exercises

Fetch all exercises with pagination, showing name, body parts, target muscles, equipment, and instructions. Use to browse the complete exercise library.

Instructions

Get a list of all exercises with pagination.

Args:
    limit: Maximum number of exercises to return (default: 20, max: 100)
    offset: Number of exercises to skip (default: 0)

Returns:
    A formatted string containing exercise information including name, body parts,
    target muscles, equipment, and instructions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

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

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

No annotations are supplied, so the description carries the full burden of behavioral disclosure. It clearly states that the tool returns a formatted string containing name, body parts, target muscles, equipment, and instructions, and it documents pagination via limit/offset. It does not cover ordering or error behavior, but 'get' implies a read-only operation and the return contract is explicit.

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 compact, with a one-sentence summary followed by clearly labeled Args and Returns sections. Every sentence provides actionable information with no repetition 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?

For a simple paginated list with zero required parameters and an existing output schema, the description is nearly complete: it documents both parameters, defaults, and the return format. The main gap is the lack of ordering details needed for stable pagination, but this does not prevent a basic correct invocation.

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?

Schema description coverage is 0%, so the description must document the parameters, and it does effectively. It explains that limit is the maximum number of exercises (default 20, max 100) and offset is the number to skip (default 0), adding meaning not present in the input schema. Both arguments are fully specified.

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 opening sentence 'Get a list of all exercises with pagination' states a concrete verb, resource, and scope, which can be distinguished from filtered siblings such as get_exercises_by_body_part or search_exercises. However, it does not explicitly name or contrast any sibling, so it stops short of the strongest differentiation.

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 does not state when to prefer this tool over the numerous filtered alternatives, nor does it name any alternative. Use is only implied by the word 'all' in the first sentence. No explicit exclusions or prerequisites are provided.

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/nitinchakravarthy/workout_tracker_mcp'

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