@tulip/mcp-server
Version:
Model Context Protocol server for Tulip API
27 lines (26 loc) • 874 B
JSON
{
"name": "updateStationGroupStations",
"description": "Updates the list of stations in a station group. Corresponds to PATCH /api/stations/v1/station-groups/{stationGroupId}/stations. Requires `stations:write` scope. [WRITE]",
"inputSchema": {
"type": "object",
"properties": {
"stationGroupId": {
"type": "string",
"description": "The id of the station group that the stations will be updated for."
},
"stationIds": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of station IDs to include in the station group"
}
},
"required": ["stationGroupId"]
},
"category": "write",
"type": "station-group",
"dangerous": false,
"httpType": "PATCH",
"url": "/api/stations/v1/station-groups/:stationGroupId/stations"
}