Skip to main content
PUT
/
api
/
mcp
/
client
/
{name}
Edit MCP client tools
curl --request PUT \
  --url http://localhost:8080/api/mcp/client/{name} \
  --header 'Content-Type: application/json' \
  --data '{
  "tools_to_execute": [
    "<string>"
  ]
}'
{
  "status": "success",
  "message": "MCP client tools edited successfully"
}

Path Parameters

name
string
required

The name of the MCP client to edit.

Body

application/json
tools_to_execute
string[]

Include-only list of tools. '*' means all tools, [] means no tools.

Response

Client tools edited successfully

status
string
Example:

"success"

message
string
Example:

"MCP client tools edited successfully"