Share feedback
Answers are generated based on the documentation.

Experimental

Schema

McpCreateSpec

Type: object

McpCreateSpec is CreateSandboxRequest's MCP block: the StartMcpGateway fields without the sandbox ref, wired before the workload starts. servers must be empty when gateway_url is set
gatewayUrl

Type: string | null

gateway_url attaches read-only to a pre-existing shareable gateway when supported.
All schema constraints and annotations
{
  "description": "gateway_url attaches read-only to a pre-existing shareable gateway when supported.",
  "format": "uri",
  "type": [
    "string",
    "null"
  ]
}
servers

Type: array

servers are initial server names for a backend-minted gateway.
Array item

Type: string

All schema constraints and annotations
{
  "minLength": 1,
  "type": "string"
}
All schema constraints and annotations
{
  "description": "servers are initial server names for a backend-minted gateway.",
  "items": {
    "minLength": 1,
    "type": "string"
  },
  "type": "array"
}
static

Type: boolean

static pins the requested server set and closes gateway-side discovery.
All schema constraints and annotations
{
  "description": "static pins the requested server set and closes gateway-side discovery.",
  "type": "boolean"
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "McpCreateSpec is CreateSandboxRequest's MCP block: the StartMcpGateway\nfields without the sandbox ref, wired before the workload starts.\nservers must be empty when gateway_url is set",
  "properties": {
    "gatewayUrl": {
      "description": "gateway_url attaches read-only to a pre-existing shareable gateway when supported.",
      "format": "uri",
      "type": [
        "string",
        "null"
      ]
    },
    "servers": {
      "description": "servers are initial server names for a backend-minted gateway.",
      "items": {
        "minLength": 1,
        "type": "string"
      },
      "type": "array"
    },
    "static": {
      "description": "static pins the requested server set and closes gateway-side discovery.",
      "type": "boolean"
    }
  },
  "title": "McpCreateSpec",
  "type": "object"
}