Skip to main content
Glama
KerkhofMe
by KerkhofMe

get_athlete

Retrieve your Strava athlete profile to access personal statistics, training metrics, and performance data for fitness analysis.

Instructions

Get the profile of the authenticated Strava athlete

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler for the 'get_athlete' tool. It calls the Strava API at the '/athlete' endpoint using the `stravaFetch` helper.
    async () => {
      const athlete = await stravaFetch("/athlete");
      return {
        content: [{ type: "text", text: JSON.stringify(athlete, null, 2) }],
      };
    }
  • src/index.ts:67-77 (registration)
    The registration of the 'get_athlete' tool on the MCP server.
    server.tool(
      "get_athlete",
      "Get the profile of the authenticated Strava athlete",
      {},
      async () => {
        const athlete = await stravaFetch("/athlete");
        return {
          content: [{ type: "text", text: JSON.stringify(athlete, null, 2) }],
        };
      }
    );
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'authenticated' which hints at permission needs, but lacks details on rate limits, error handling, or response format. This is inadequate for a tool that likely involves API calls and user data.

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, clear sentence with zero wasted words, front-loading the essential action and resource. It's appropriately sized for a simple tool with no parameters.

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?

Given the tool's simplicity (0 parameters, no output schema), the description is minimally complete but lacks depth. Without annotations or output schema, it should ideally explain more about the returned profile data or authentication context to fully guide the agent.

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?

The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately doesn't discuss parameters, earning a high baseline score as it avoids redundancy.

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 clearly states the verb ('Get') and resource ('profile of the authenticated Strava athlete'), making the purpose specific and understandable. However, it doesn't explicitly differentiate from sibling tools like 'get_athlete_stats', which might provide overlapping athlete information, so it falls short of a perfect score.

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?

The description provides minimal guidance by implying usage for retrieving the authenticated athlete's profile, but it offers no explicit when-to-use advice, alternatives (e.g., vs. 'get_athlete_stats'), or exclusions. This leaves the agent with little context for tool selection among siblings.

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

Install Server

Other Tools

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/KerkhofMe/StravaMCP'

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