get-segment-effort
Retrieve detailed segment effort data by providing its unique ID. This tool enables analysis of specific Strava activity segments through the Strava MCP Server.
Instructions
Fetches detailed information about a specific segment effort using its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
effortId | Yes | The unique identifier of the segment effort to fetch. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"effortId": {
"description": "The unique identifier of the segment effort to fetch.",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"effortId"
],
"type": "object"
}