Share feedback
Answers are generated based on the documentation.

Experimental

Schema

McpGateway

Type: object

McpGateway is gateway state for one sandbox.
name

Type: string

(IDENTIFIER) name is the complete singleton resource name.
All schema constraints and annotations
{
  "description": "(IDENTIFIER) name is the complete singleton resource name.",
  "type": "string"
}
reused

Type: boolean

reused is true when the response reused an existing gateway.
All schema constraints and annotations
{
  "description": "reused is true when the response reused an existing gateway.",
  "type": "boolean"
}
servers

Type: array

servers is the accumulated requested set, not live gateway truth.
Array item

Schema: McpServer

All schema constraints and annotations
{
  "description": "servers is the accumulated requested set, not live gateway truth.",
  "items": {
    "$ref": "#/components/schemas/McpServer"
  },
  "type": "array"
}
state

Schema: McpGatewayState

state is the gateway readiness state.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/McpGatewayState",
  "description": "state is the gateway readiness state."
}
uid · response only

Type: string | null

(IMMUTABLE) uid is the existing immutable backing identity, omitted when none is available.
All schema constraints and annotations
{
  "description": "(IMMUTABLE) uid is the existing immutable backing identity, omitted when none is available.",
  "readOnly": true,
  "type": [
    "string",
    "null"
  ]
}
url

Type: string

url is the gateway endpoint.
All schema constraints and annotations
{
  "description": "url is the gateway endpoint.",
  "type": "string"
}
All schema constraints and annotations
{
  "description": "McpGateway is gateway state for one sandbox.",
  "properties": {
    "name": {
      "description": "(IDENTIFIER) name is the complete singleton resource name.",
      "type": "string"
    },
    "reused": {
      "description": "reused is true when the response reused an existing gateway.",
      "type": "boolean"
    },
    "servers": {
      "description": "servers is the accumulated requested set, not live gateway truth.",
      "items": {
        "$ref": "#/components/schemas/McpServer"
      },
      "type": "array"
    },
    "state": {
      "$ref": "#/components/schemas/McpGatewayState",
      "description": "state is the gateway readiness state."
    },
    "uid": {
      "description": "(IMMUTABLE) uid is the existing immutable backing identity, omitted when none is available.",
      "readOnly": true,
      "type": [
        "string",
        "null"
      ]
    },
    "url": {
      "description": "url is the gateway endpoint.",
      "type": "string"
    }
  },
  "title": "McpGateway",
  "type": "object"
}