Skip to main content
Glama
tomekkorbak

Strava MCP Server

by tomekkorbak

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
get_activitiesB
Get the authenticated athlete's recent activities.

Args:
    limit: Maximum number of activities to return (default: 10)

Returns:
    Dictionary containing activities data
get_activities_by_date_rangeB
Get activities within a specific date range.

Args:
    start_date: Start date in ISO format (YYYY-MM-DD)
    end_date: End date in ISO format (YYYY-MM-DD)
    limit: Maximum number of activities to return (default: 30)

Returns:
    Dictionary containing activities data
get_activity_by_idC
Get detailed information about a specific activity.

Args:
    activity_id: ID of the activity to retrieve

Returns:
    Dictionary containing activity details
get_recent_activitiesB
Get activities from the past X days.

Args:
    days: Number of days to look back (default: 7)
    limit: Maximum number of activities to return (default: 10)

Returns:
    Dictionary containing activities data

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.1/5.0

Scored across 4 tools

Disambiguation2/5

Multiple tools have overlapping purposes that could cause confusion. get_activities and get_recent_activities both retrieve recent activities with similar parameters, while get_activities_by_date_range provides date-based filtering that could also be used for recent activities. Only get_activity_by_id has a clearly distinct purpose.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case formatting. The naming is perfectly consistent across all four tools, making them predictable and easy to understand at a glance.

Tool Count3/5

With only 4 tools, this feels thin for a Strava server that presumably handles athlete activities. While the count is reasonable for a minimal implementation, it lacks coverage for other Strava domains like segments, clubs, or athlete profiles that would be expected.

Completeness2/5

The tool surface is severely incomplete for a Strava integration. While it provides multiple ways to read activities, there are no tools for creating, updating, or deleting activities, nor any coverage of other Strava resources like segments, clubs, gear, or athlete statistics. This creates significant gaps that will limit agent capabilities.

Maintenance

ActivityInactive
ResponsivenessUnresponsive