Skip to main content
Glama

HAPI Strava MCP Server

Get Athlete Stats

getStats
Read-only

Get Athlete Stats - Returns the activity stats of an athlete. Only includes data from activities set to Everyone visibility.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

TDQS

B3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the agent knows this is a safe read operation. The description adds one genuine behavioral detail beyond the annotations: that only activities with Everyone visibility are included. This is useful context, but it is the sole behavioral disclosure for a data-fetching tool, and it omits other behavioral traits such as response format or pagination. With annotations covering the safety profile, a 3 is appropriate.

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 description is two sentences with no wasted words, and the purpose is front-loaded ahead of the visibility constraint. The only minor redundancy is repeating 'Get Athlete Stats' from the title at the start of the description, which is a common but slightly wasteful convention.

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 1-parameter, read-only getter with safety covered by annotations, the description is fairly adequate but has gaps. Since there is no output schema, the return value (what 'stats' actually includes) is never described, and the single parameter's meaning is left implicit. The description states the data-scope constraint, which helps, but these omissions prevent it from being fully complete for an agent invoking it correctly.

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

Parameters2/5

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

Schema description coverage is 0%, and the description does not explicitly explain what the single 'id' parameter refers to. While 'stats of an athlete' implies id is the athlete identifier, the description never makes this explicit, leaving potential ambiguity (e.g., could it be a club or segment id?). With zero schema coverage, the description must compensate, and it does not clearly document the parameter's semantics.

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 ('Returns'), a resource ('activity stats'), and a target ('of an athlete'), which is clear and distinguishes it from the sibling tools focused on clubs, segments, gear, and routes. However, 'stats' is somewhat ambiguous (what specific stats?) and the title is nearly restated verbatim at the start, making the core value slightly redundant. Still, it is clearly not a tautology.

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 tool versus alternatives such as getLoggedInAthlete, getLoggedInAthleteClubs, or getRoutesByAthleteId. No context for selection, no exclusions, and no alternative routing is provided. The only usage-related detail is the visibility constraint ('activities set to Everyone visibility'), which is a data-scope warning rather than guidance on choosing this tool.

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.

TDQS

A3.7/5.0
Disambiguation5/5

Each tool targets a distinct resource and operation: segments, clubs, gear, athlete, routes, and stats. Even potentially similar tools like getEffortsBySegmentId and getSegmentEffortById are clearly differentiated by their descriptions (listing efforts vs. fetching a single effort).

Naming Consistency5/5

All tool names follow a consistent camelCase pattern with a verb (get, explore) followed by a specific noun phrase. Names like getClubById, getLoggedInAthlete, and getStats are uniform and predictable, making it easy to infer their purpose.

Tool Count5/5

With 13 tools, the server is well-scoped for a focused read-only API over Strava data. The count is within the ideal range and each tool covers a meaningful aspect of the domain without redundancy or bloat.

Completeness3/5

The tool surface covers several Strava domains (clubs, segments, gear, routes, athlete stats) but is missing any activity-related operations (e.g., list activities, get activity by ID) and all write operations. This creates notable gaps for a comprehensive Strava integration, though the read-only scope may be intentional.