Skip to main content
POST
/
api
/
v1
/
mcp_manager
Create a new MCP server
curl --request POST \
  --url https://flowra.dev/api/v1/mcp_manager \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "my-mcp-server",
  "description": "<string>",
  "mode": "SMART",
  "selectedTools": [
    "tool_slug_1",
    "tool_slug_2"
  ],
  "isPublic": false,
  "config": {},
  "externalMcpConfigs": [
    {
      "name": "my-mcp",
      "url": "https://example.com/mcp",
      "tools": [
        "tool_a"
      ]
    }
  ]
}
'
{
  "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:

Body

application/json

Response

201 - application/json

MCP server created successfully