An HTTPRoute that points to a backend MCP server. The controller discovers the backend service from this HTTPRoute and configures the broker to federate its tools
prefix
String
No
Prefix added to all federated tools from referenced servers. Avoids naming conflicts when aggregating tools from multiple sources (e.g. server1_search and server2_search). Immutable once set
path
String
No
URL path where the MCP server endpoint is exposed. Default: /mcp
Reference to a Secret containing authentication credentials used exclusively by the broker for tool discovery and session management. Never injected into client tools/call requests. The secret must have the label mcp.kuadrant.io/secret=true. Credentials are made available to the broker via KAGENTI_{NAME}_CRED env vars
state
String
No
Desired operational state of the server. Enum: Enabled (default), Disabled. When set to Disabled, the broker stops connecting to the server and removes its tools from the gateway. The server can be re-enabled at any time by setting this field back to Enabled
Reference to a Secret containing a PEM-encoded CA certificate bundle. The broker uses this CA to verify TLS connections to the upstream MCP server. The secret must have the label mcp.kuadrant.io/secret=true. CA cert data must not exceed 64 KiB
Enables per-user token collection via URL elicitation (-32042 flow). When set, the router collects tokens from elicitation-capable clients at tool-call time. See URL Elicitation guide
userSpecificList
String (Enabled / Disabled)
No
When Enabled, the broker fetches tools from this server per-user using their session headers instead of caching the service account's tool list. When Enabled, the prefix field is required (enforced by CEL validation). Default: Disabled
category
[]String
No
One or more categories for tool discovery filtering. Used by discover_tools to let agents filter servers by category. Default: ["uncategorised"]. Max 3 items, max 128 chars each
hint
String
No
Short description of what this MCP server offers. Returned by discover_tools to help agents decide which tools to select. Max 256 chars
tags
[]String
No
Arbitrary labels for this MCP server. Used to filter and discover tools via the list_tags and filter_tools_by_tags broker tools. Max 10 items, 1-128 chars each
Overrides the default broker token page URL. When set, users are directed to this external URL instead of the built-in page. The gateway appends ?elicitation_id=<id> to the URL
tokenURLElicitation and credentialRef serve different purposes: credentialRef provides the broker with credentials for tool discovery, while tokenURLElicitation collects per-user tokens at tool-call time.
Examples:
# Minimal: uses the built-in broker token pagespec:credentialRef:name:my-server-credtokenURLElicitation:{}
# External URL: directs users to a custom credential pagespec:credentialRef:name:my-server-credtokenURLElicitation:url:"https://vault.example.com/ui/tokens"