Skip to main content
GET
/
api
/
mcp
/
clients
List MCP clients
curl --request GET \
  --url http://localhost:8080/api/mcp/clients
[
  {
    "config": {
      "id": "<string>",
      "name": "<string>",
      "connection_type": "http",
      "connection_string": "<string>",
      "stdio_config": {
        "command": "<string>",
        "args": [
          "<string>"
        ],
        "envs": [
          "<string>"
        ]
      },
      "headers": {},
      "tools_to_execute": [
        "<string>"
      ]
    },
    "tools": [
      {
        "name": "<string>",
        "description": "<string>",
        "parameters": {}
      }
    ],
    "state": "connected"
  }
]

Response

Successful response

config
object

MCP client configuration

tools
object[]
state
enum<string>

Connection state of an MCP client

Available options:
connected,
disconnected,
error