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
Example request
{
"tools_to_execute": [
"read_file",
"list_directory"
],
"tools_to_skip": [
"delete_file",
"write_file"
]
}Response
MCP client tools updated successfully
Example response
{
"status": "success",
"message": "Operation completed successfully"
}