Skip to main content
PATCH
/
api
/
v1
/
mcp_manager
/
{id}
Update MCP server
curl --request PATCH \
  --url https://flowra.dev/api/v1/mcp_manager/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "my-mcp-server",
  "description": "<string>",
  "mode": "NORMAL",
  "selectedTools": [
    "tool_slug_1",
    "tool_slug_2"
  ],
  "isPublic": true,
  "config": {},
  "externalMcpConfigs": [
    "<string>"
  ]
}
'
{
  "success": true,
  "message": "Operation completed successfully",
  "data": {}
}

Authorizations

x-api-key
string
header
required

Project API key. Create and manage keys in the dashboard under Project → API Keys. Send as header: x-api-key:

Path Parameters

id
string
required

MCP server ID

Example:

"uuid"

Body

application/json

Response

200 - application/json

MCP server updated successfully