We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tulip/tulip-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
updateStationGroupStations.json•848 B
{
"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"
}