Artboard
MCP Servers

Get an MCP Server

Get MCP Server Details

Returns detailed information about a specific MCP server including its tools.

GET
/otto/api/mcp-servers/{mcp_server_slug}

Path Parameters

mcp_server_slug*string

GET /otto/api/mcp-servers/:mcp_server_slug Parameter

Response Body

application/json

application/json

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