Strava MCP Server

by yorrickjansen
Verified

get_activity

Get details of a specific activity.

Args: ctx: The MCP request context activity_id: The ID of the activity include_all_efforts: Whether to include all segment efforts

Returns: The activity details

Input Schema

NameRequiredDescriptionDefault
activity_idYes
include_all_effortsNo

Input Schema (JSON Schema)

{ "properties": { "activity_id": { "title": "Activity Id", "type": "integer" }, "include_all_efforts": { "default": false, "title": "Include All Efforts", "type": "boolean" } }, "required": [ "activity_id" ], "title": "get_activityArguments", "type": "object" }