v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
MCP Servers

Report MCP Server deployment status

Pre-release Endpoint This endpoint is currently in beta and is subject to change.

Reports the current deployment status of an MCP server, including replica counts and per-version pod statuses.

post/v1/mcp-cp/{controlPlaneId}/mcp-servers/{mcpServerId}/status

Request body

versionstring required

The version identifier of the MCP server deployment.

desired_replicasinteger required

The desired number of replicas for this version.

created_replicasinteger required

The number of replicas that have been created for this version.

Example request

[
  {
    "version": "v1",
    "desired_replicas": 2,
    "created_replicas": 2,
    "pods_status": {
      "ready": 2
    }
  }
]

Response

Status accepted.