# McpConfiguredServer


[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": "McpConfiguredServer preserves one canonical requested identity and its provisioning outcome.",
  "properties": {
    "outcome": {
      "$ref": "#/components/schemas/McpConfigurationOutcome",
      "description": "outcome is concrete even when the gateway remains ready after a failed add.",
      "not": {
        "enum": [
          "unspecified"
        ]
      }
    },
    "reason": {
      "description": "reason is nonsecret context and never carries credentials or credential-bearing URLs.",
      "type": "string"
    },
    "server": {
      "$ref": "#/components/schemas/McpServer",
      "description": "server is the resolved requested server; its type cannot silently change within retained intent."
    }
  },
  "required": [
    "server",
    "outcome"
  ],
  "title": "McpConfiguredServer",
  "type": "object"
}
```



