get_activity_segments
Retrieves segment efforts for a specific Strava activity by providing the activity ID, enabling analysis of performance across route sections.
Instructions
Get the segments of a specific activity.
Args: ctx: The MCP request context activity_id: The ID of the activity
Returns: List of segment efforts for the activity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"activity_id": {
"title": "Activity Id",
"type": "integer"
}
},
"required": [
"activity_id"
],
"title": "get_activity_segmentsArguments",
"type": "object"
}