get-route
Retrieve detailed information about a specific Strava route by providing its unique route ID. Part of the Strava MCP Server, this tool bridges the Strava API for streamlined data access.
Instructions
Fetches detailed information about a specific route using its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
routeId | Yes | The unique identifier of the route to fetch. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"routeId": {
"description": "The unique identifier of the route to fetch.",
"pattern": "^\\d+$",
"type": "string"
}
},
"required": [
"routeId"
],
"type": "object"
}