Skip to main content
Glama

Strava MCP Server

by r-huijts

list-segment-efforts

Retrieve an athlete's efforts on a specific Strava segment, filterable by date range and paginated for efficient access. Ideal for analyzing performance over time.

Instructions

Lists the authenticated athlete's efforts on a specific segment, optionally filtering by date.

Input Schema

NameRequiredDescriptionDefault
endDateLocalNoFilter efforts ending before this ISO 8601 date-time (optional).
perPageNoNumber of efforts to return per page (default: 30, max: 200).
segmentIdYesThe ID of the segment for which to list efforts.
startDateLocalNoFilter efforts starting after this ISO 8601 date-time (optional).

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "endDateLocal": { "description": "Filter efforts ending before this ISO 8601 date-time (optional).", "format": "date-time", "type": "string" }, "perPage": { "default": 30, "description": "Number of efforts to return per page (default: 30, max: 200).", "exclusiveMinimum": 0, "maximum": 200, "type": "integer" }, "segmentId": { "description": "The ID of the segment for which to list efforts.", "exclusiveMinimum": 0, "type": "integer" }, "startDateLocal": { "description": "Filter efforts starting after this ISO 8601 date-time (optional).", "format": "date-time", "type": "string" } }, "required": [ "segmentId" ], "type": "object" }

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

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