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
updateInterfaceStationAssignment.json•969 B
{
"name": "updateInterfaceStationAssignment",
"description": "Updates which station this interface is assigned to. Corresponds to PUT /api/stations/v1/interfaces/{interfaceId}/station-assignment. Requires `stations:write` scope. [WRITE]",
"inputSchema": {
"type": "object",
"properties": {
"interfaceId": {
"type": "string",
"description": "The unique identifier for an interface."
},
"replaceInterfaceAtStation": {
"type": "boolean",
"description": "If set to true, indicates that if there is already an interface assigned to the station it will be replaced."
},
"stationId": {
"type": "string",
"description": "The ID of the station to assign the interface to"
}
},
"required": ["interfaceId"]
},
"category": "write",
"type": "interface",
"dangerous": false,
"httpType": "PUT",
"url": "/api/stations/v1/interfaces/:interfaceId/station-assignment"
}