@tulip/mcp-server
Version:
Model Context Protocol server for Tulip API
27 lines (26 loc) • 858 B
JSON
{
"name": "listInterfaces",
"description": "Gets a paginated, filtered, and sorted list of interfaces. Corresponds to GET /api/stations/v1/interfaces. Requires `stations:read` scope. [READ-ONLY]",
"inputSchema": {
"type": "object",
"properties": {
"limit": {
"type": "integer",
"description": "Limit the number of items listed"
},
"offset": {
"type": "integer",
"description": "Return documents after a certain offset"
},
"sort": {
"type": "string",
"description": "Sort the result by name, lastModified.at, and created.at. Separate by comma. Specify descending sort with a - character"
}
}
},
"category": "read-only",
"type": "interface",
"dangerous": false,
"httpType": "GET",
"url": "/api/stations/v1/interfaces"
}