# McpGateway


[API catalog](/reference/api/) · [Docker Sandboxes overview](/reference/api/sandboxes/latest/) · [Product manual](https://docs.docker.com/ai/sandboxes-api/) · [OpenAPI specification](/reference/api/sandboxes/api.yaml)

API version: v1


> This API is experimental. Features, interfaces,
> and behavior may change.




Schema constraints and annotations:

```json
{
  "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"
}
```



