MCP Management
List MCP Clients
Get information about all configured MCP (Model Context Protocol) clients including their connection state, available tools, and configuration.
get/api/mcp/clients
Response
List of MCP clients
Example response
[
{
"name": "filesystem",
"config": {
"name": "filesystem",
"connection_type": "stdio",
"connection_string": "https://api.example.com/mcp",
"stdio_config": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem"
],
"envs": [
"HOME",
"USER"
]
},
"tools_to_skip": [
"delete_file",
"write_file"
],
"tools_to_execute": [
"read_file",
"list_directory"
]
},
"tools": [
"read_file",
"list_directory",
"write_file"
],
"state": "connected"
}
]