Skip to main content
Glama
ls2g08

Strava MCP server

by ls2g08

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.0

  • Disambiguation4/5

    The three tools are clearly distinct: one returns the athlete profile, one lists activities, and one returns a single activity's detail. Minor potential confusion between list_my_activities and get_activity, but their purposes are obvious and descriptions clarify the distinction.

    Naming Consistency4/5

    All tools use a consistent verb_noun pattern (get_my_profile, list_my_activities, get_activity) with snake_case throughout. Minor inconsistency: 'my' is included in two names but not in get_activity, which slightly breaks the symmetry.

    Tool Count3/5

    Three tools is on the lower end of the acceptable range and feels thin for a server covering an activity-tracking platform like Strava. It's borderline — sufficient to demonstrate the server works, but not a rich surface.

    Completeness2/5

    The surface only offers read operations: profile retrieval, activity listing, and activity detail. Notable gaps include no ability to create/upload activities, update activity records (e.g., change title or privacy), delete activities, manage segments, access clubs, or handle friends/athletes. It's a purely read-only view with no lifecycle operations.

  • Average 3.4/5 across 3 of 3 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 1 commit in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

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

    With no annotations at all (no readOnlyHint, destructiveHint), the description carries full burden of behavioral disclosure. It doesn't state whether this is a read-only operation, whether it requires specific permissions, or what happens if the activity doesn't belong to the authenticated athlete (404, access errors). No behavioral features are disclosed beyond the basic return action.

    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?

    A single concise sentence with zero waste. Every word contributes to purpose. Front-loaded with the verb 'Return' and immediately clear about scope.

    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 single-parameter fetch tool with no output schema, the description is reasonably complete — it explains what it returns. However, with no annotations declaring this as a non-mutating read operation, and no explicit mention that the activity must belong to the authenticated athlete or what error occurs otherwise, there's a modest completeness gap. Still, given tool complexity is low, it approaches adequacy.

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

    Parameters3/5

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

    Schema coverage is 100% — the single parameter activity_id already has a description ('Strava activity ID') including type constraints. The tool description adds no parameter details beyond referring to 'one of the authenticated athlete's activities,' which confirms the ID belongs to that athlete. Baseline 3 is appropriate when schema does the documentation work.

    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 it returns the detailed record for one activity, with specific verb (Return) and resource (detailed record for an activity). It distinguishes from siblings: 'one of the authenticated athlete's activities' clarifies it's singular vs list_my_activities. However, it doesn't explicitly differentiate from get_my_profile, though the difference is fairly obvious.

    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 implies it's for fetching a single activity by ID ('one of the... activities'), which implies you need the activity_id. But there's no explicit when-to-use guidance, no alternative named, and nothing about needing to first obtain activity IDs via list_my_activities.

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

  • Behavior3/5

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

    No annotations are provided, so the description carries the full burden. It discloses this is a listing operation scoped to the authenticated athlete and returns them in reverse chronological order, which is useful behavioral context. However, it doesn't disclose pagination behavior, number of results returned without pagination, or whether activities include full detail or are summaries.

    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?

    Single sentence, zero wasted words, front-loads the core purpose. It's appropriately concise but could arguably add a footnote about pagination without excessive bloat.

    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 list tool with no output schema and no annotations, the description is functional but minimal. It covers the core purpose and ordering but lacks guidance on pagination defaults, result caps, or how it relates to the get_activity sibling. Parameter count (4) is moderate and all are documented, but behavioral completeness is thin.

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

    Parameters3/5

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

    Schema description coverage is 100%, so the schema already documents all 4 parameters (page, after, before, per_page). The description adds no new parameter semantics beyond what's in the schema. Baseline 3 is appropriate since schema fully handles parameter documentation.

    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 (List), resource (authenticated athlete's activities), and scope (reverse chronological order). It distinguishes from siblings (get_activity retrieves a single activity, get_my_profile retrieves profile) reasonably well, though it doesn't explicitly name them as alternatives.

    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 implies this returns a list of the authenticated user's own activities, and page/per_page params signal pagination usage. However, it doesn't explicitly state when to use this vs. get_activity (which presumably returns a single activity by ID), and gives no guidance on pagination strategy or rate limits.

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

  • Behavior3/5

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

    No annotations are provided, so the description carries the burden of behavioral disclosure. It's a read operation (zero parameters, 'return...profile'), and this is reasonably clear from 'Return' and zero required parameters. However, it doesn't detail aspects like whether profile includes full settings, pagination, or any edge cases in the returned 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?

    One sentence, zero waste. It includes the essential verb, resource, and scope (authenticated athlete). Perfectly concise for the complexity involved.

    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?

    The tool is simple (zero params, no output schema, no annotations), but there's still room for more context about what 'profile and settings' includes—such as whether it covers privacy settings, units, or other configuration. No output schema exists, so describing return content would add value. Still, for a zero-param read of one's own profile, it's reasonably adequate.

    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?

    This tool has 0 parameters, so the baseline for parameter semantics is 4 per the rubric. The description appropriately explains what will be returned (profile and settings), which is the complete need for parameter semantics on a zero-param call.

    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 'Return the authenticated athlete's Strava profile and settings' clearly states the verb (return) and resource (athlete profile and settings). It's specific about what data is returned, though it doesn't explicitly distinguish from siblings like get_activity. However, the resource 'profile and settings' is distinct enough from activity-level tools.

    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 implies this is for retrieving the authenticated user's own profile. Sibling tools like get_activity and list_my_activities are clearly activity-focused, so an agent could reasonably infer when to use this tool. However, there's no explicit when-to-use vs alternatives guidance.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

strava-mcp MCP server

Copy to your README.md:

Score Badge

strava-mcp MCP server

Copy to your README.md:

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/ls2g08/strava-mcp'

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