v4

latestOpenAPI 3.1.1Apache 2.02026-07-31107278570.4 KB
MCP Configurations

Create a new MCP configuration

Creates a new MCP configuration with a set of connections and tools.

post/api/v1/mcp/configs

Request body

descriptionstring

Description of the MCP configuration

idstring

Unique ID of the MCP config

mcp_server_urlstring

URL of the MCP server for this configuration. Empty when the MCP config server URL feature is not enabled for this environment.

namestring

Unique name for the MCP configuration. Must be 1–100 characters. Allowed characters: lowercase letters (a–z), digits (0–9), hyphens (-), and underscores (_).

Example request

{
  "description": "Summarizes daily emails and posts to Slack",
  "id": "cfg_85630864460904897",
  "mcp_server_url": "https://env.scalekit.com/mcp/v3/servers/550e8400-e29b-41d4-a716-446655440000",
  "name": "daily-summarizer"
}

Response

The newly created MCP configuration

Example response

{
  "config": {
    "description": "Summarizes daily emails and posts to Slack",
    "id": "cfg_85630864460904897",
    "mcp_server_url": "https://env.scalekit.com/mcp/v3/servers/550e8400-e29b-41d4-a716-446655440000",
    "name": "daily-summarizer"
  }
}