Mix LogoMix

List MCP servers

Retrieve list of available Model Context Protocol (MCP) servers

Retrieve list of available Model Context Protocol (MCP) servers

GET
/api/mcp

Response Body

from mix_python_sdk import Mixwith Mix() as mix:    res = mix.system.list_mcp_servers()    # Handle response    print(res)
[
  {
    "connected": true,
    "name": "string",
    "status": "string",
    "tools": [
      {
        "description": "string",
        "name": "string"
      }
    ]
  }
]
{
  "error": {
    "code": 0,
    "message": "string",
    "type": "bad_request"
  }
}
{
  "error": {
    "code": 0,
    "message": "string",
    "type": "bad_request"
  }
}