Artboard
MCP Servers

Get all MCP Servers

List all MCP Servers

Returns a list of all MCP servers configured in OttoFMS.

GET
/otto/api/mcp-servers

Response Body

application/json

application/json

curl -X GET "https://your.server.net/otto/api/mcp-servers"
{
  "response": {
    "servers": [
      {
        "slug": "string",
        "name": "string",
        "filename": "string",
        "description": "string",
        "is_active": true,
        "created_at": "string",
        "updated_at": "string",
        "created_by": "string"
      }
    ]
  },
  "messages": [
    {
      "code": 0.1,
      "text": "ok"
    }
  ]
}
{
  "response": {},
  "messages": [
    {
      "code": 18011,
      "text": "OttoFMS sample error"
    }
  ]
}