@tulip/mcp-server
Version:
Model Context Protocol server for Tulip API
27 lines (26 loc) • 807 B
JSON
{
"name": "createStationGroupAppAssignment",
"description": "Creates an app assignment for a station group. Corresponds to POST /api/stations/v1/station-groups/{stationGroupId}/app-assignments. Requires `stations:write` scope. [WRITE]",
"inputSchema": {
"type": "object",
"properties": {
"stationGroupId": {
"type": "string",
"description": "The ID of the station group"
},
"appAssignmentData": {
"type": "object",
"description": "App assignment data"
}
},
"required": [
"stationGroupId",
"appAssignmentData"
]
},
"category": "write",
"type": "station-group",
"dangerous": false,
"httpType": "POST",
"url": "/api/stations/v1/station-groups/:stationGroupId/app-assignments"
}