get_activity
Retrieve detailed information about a specific Strava activity, including segment efforts if specified, using an activity ID. Simplifies access to fitness data via the Strava MCP Server.
Instructions
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
Name | Required | Description | Default |
---|---|---|---|
activity_id | Yes | ||
include_all_efforts | No |
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"
}