export-route-tcx
Export a Strava route in TCX format by providing the route ID. The tool saves the exported file to a pre-configured local directory for easy access.
Instructions
Exports a specific Strava route in TCX format and saves it to a pre-configured local directory.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
routeId | Yes | The ID of the Strava route to export. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"routeId": {
"description": "The ID of the Strava route to export.",
"type": "string"
}
},
"required": [
"routeId"
],
"type": "object"
}