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