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