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
deleteStationGroupAppAssignment.json•865 B
{
"name": "deleteStationGroupAppAssignment",
"description": "⚠️ ADMIN OPERATION ⚠️ Deletes an app assignment from a station group. Corresponds to DELETE /api/stations/v1/station-groups/{stationGroupId}/app-assignments/{appAssignmentId}. Requires `stations:write` scope. [ADMIN]",
"inputSchema": {
"type": "object",
"properties": {
"stationGroupId": {
"type": "string",
"description": "The ID of the station group"
},
"appAssignmentId": {
"type": "string",
"description": "The ID of the app assignment to delete"
}
},
"required": [
"stationGroupId",
"appAssignmentId"
]
},
"category": "admin",
"type": "station-group",
"dangerous": true,
"httpType": "DELETE",
"url": "/api/stations/v1/station-groups/:stationGroupId/app-assignments/:appAssignmentId"
}