# McpConfigurationReport


[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": "McpConfigurationReport is also returned in Error.details on accepted provisioning failure.",
  "properties": {
    "complete": {
      "description": "complete means every active requested server is applied or explicitly permitted to skip.",
      "type": "boolean"
    },
    "dormantServers": {
      "description": "dormant_servers retains earlier minted intent while attached; it is empty in minted modes.",
      "items": {
        "$ref": "#/components/schemas/McpServer"
      },
      "maxItems": 256,
      "type": "array"
    },
    "generation": {
      "description": "generation is an opaque durable fence, never ordered or synthesized by callers.",
      "type": "string"
    },
    "mode": {
      "$ref": "#/components/schemas/McpConfigurationMode",
      "description": "mode separates minted discovery behavior from read-only attachment.",
      "not": {
        "enum": [
          "unspecified"
        ]
      }
    },
    "servers": {
      "description": "servers is the complete active requested set; together with dormant_servers it matches McpGateway.servers.",
      "items": {
        "$ref": "#/components/schemas/McpConfiguredServer"
      },
      "maxItems": 256,
      "type": "array"
    }
  },
  "required": [
    "generation",
    "mode"
  ],
  "title": "McpConfigurationReport",
  "type": "object"
}
```



