v1

latestOpenAPI 3.0.3MIT2026-07-132953108.7 KB
MCP Management

Edit MCP Client Tools

Modify which tools are available from an MCP client by updating tool filters.

put/api/mcp/client/{name}

Path parameters

namestring required

Name of the MCP client to edit

Request body

tools_to_executestring[]

Tools to allow from this client (whitelist)

tools_to_skipstring[]

Tools to block from this client (blacklist)

Example request

{
  "tools_to_execute": [
    "read_file",
    "list_directory"
  ],
  "tools_to_skip": [
    "delete_file",
    "write_file"
  ]
}

Response

MCP client tools updated successfully

status'success' required

Operation status

messagestring required

Success message

Example response

{
  "status": "success",
  "message": "Operation completed successfully"
}