kuadrant-mcp-poc
About
POC for setting up Kuadrant with a mcp server running in a K8s cluster
Details
- Author
- Kuadrant
- Downloads
- 231
- Categories
- Other
Jump to
- Uses Streamable-HTTP transport
- Integrates with Kuadrant for DNS, TLS, rate limiting, and auth
- Deployable on Kubernetes via manifests
- Based on the everything MCP server
- Supports API key authentication via Kuadrant AuthPolicy
- Supports rate limiting via Kuadrant RateLimitPolicy
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
kuadrant-mcp-pocCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
After meeting prerequisites (a Kubernetes cluster with Kuadrant installed), set environment variables for AWS credentials, domain, and Quay username. Build and push a Docker image for the MCP server, apply Kubernetes manifests to create the server pod, gateway, TLS, DNS, auth, and rate-limit policies. Configure VSCode Copilot as the MCP client by adding an HTTP server entry with the gateway URL and API key header (e.g., "Authorization": "APIKEY IAMALICE"). Then interact with the server through Copilot’s agent mode.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"kuadrant-mcp-poc": {
"kuadrant-mcp-poc": {
"command": "docker",
"args": [
"build",
"-t",
"quay.io/${QUAY_USERNAME}/mcp-server-everything",
"https://github.com/modelcontextprotocol/servers.git#main",
"-f",
"src/everything/Dockerfile"
]
}
}
}
}
McpServers
{
"kuadrant-mcp-poc": {
"command": "docker",
"args": [
"build",
"-t",
"quay.io/${QUAY_USERNAME}/mcp-server-everything",
"https://github.com/modelcontextprotocol/servers.git#main",
"-f",
"src/everything/Dockerfile"
]
}
}
kuadrant-mcp-poc
Introduction:
This POC used the everything MCP server as it has Streamable-HTTP capabilities
Prerequisties
- K8s cluster
- Kuadrant installed, for more info see Kuadrant docs
Set the environment variables
export KUADRANT_ZONE_ROOT_DOMAIN=example.com # Root domain associated with the Zone ID above
export QUAY_USERNAME=xxxx # Quay username
export KUADRANT_AWS_ACCESS_KEY_ID=xxxx # AWS Key ID with access to manage the DNS Zone ID below
export KUADRANT_AWS_SECRET_ACCESS_KEY=xxxx # AWS Secret Access Key with access to manage the DNS Zone ID below
Installation
1. Build you MCP Server image.
docker build -t quay.io/${QUAY_USERNAME}/mcp-server-everything https://github.com/modelcontextprotocol/servers.git\#main -f src/everything/Dockerfile
2. Push the image to your container registry.
docker push quay.io/${QUAY_USERNAME}/mcp-server-everything
3. Install the MCP Server in your K8s cluster.
kubectl apply -f mcp-server/mcp-server-everything.yaml
4. Ensure the MCP everything Server pod is running.
kubectl get pods -n mcp-server
5. Create the gateway namespace:
kubectl create ns mcp-gateway
5. Create the secret credentials in the same namespace as the Gateway - these will be used to configure DNS:
kubectl -n mcp-gateway create secret generic aws-credentials \
--type=kuadrant.io/aws \
--from-literal=AWS_ACCESS_KEY_ID=$KUADRANT_AWS_ACCESS_KEY_ID \
--from-literal=AWS_SECRET_ACCESS_KEY=$KUADRANT_AWS_SECRET_ACCESS_KEY
6. Create the secret credentials in the cert-manager namespace:
kubectl -n cert-manager create secret generic aws-credentials \
--type=kuadrant.io/aws \
--from-literal=AWS_ACCESS_KEY_ID=$KUADRANT_AWS_ACCESS_KEY_ID \
--from-literal=AWS_SECRET_ACCESS_KEY=$KUADRANT_AWS_SECRET_ACCESS_KEY
7. Create the Kuadrant Gateway:
kubectl apply -f kuadrant/gateway.yaml
8. Create the Lets encrypt Cluster issuer and TlS Policy:
kubectl apply -f kuadrant/tls.yaml
Note: The cert can't be self signed. MCP clients dont accept self signed certs yet.
9. Create the DNSPolicy:
kubectl apply -f kuadrant/dns.yaml
10. After a minute, Test that the MCP server is responding
curl -v -X POST "https://api.${KUADRANT_ZONE_ROOT_DOMAIN}/mcp" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{
"jsonrpc": "2.0",
"method": "initialize",
"params": {
"protocolVersion": "2024-11-05",
"capabilities": {
"resources": {},
"tools": {},
"prompts": {}
},
"clientInfo": {
"name": "test-curl-client",
"version": "1.0"
}
},
"id": 1
}'
11. Create the Rate limit policy:
kubectl apply -f kuadrant/rlp.yaml
12. Create the Auth policy and the API Key secrets:
kubectl apply -f kuadrant/auth.yaml
MCP Client
In this example we are using Vscode Co pilot as our MCP client as it has capabilities to connect using Streamable HTTP
1. Add the following to your VSCode setting.json. For more info please see the official VSCode MCP docs
"mcp": {
"servers": {
"my-mcp-server": {
"type": "http",
"url": "https://KUADRANT_ZONE_ROOT_DOMAIN_GOES_HERE/mcp",
"headers": {
"Authorization": "APIKEY IAMALICE"
}
}
}
},
2. The Client should be able to use the server now and you should be able to avail of the MCP server tools. Open co pilot in vscode using ⌃⌘I and in the drop down click agent.
3. In the chat type:
add 500 and 500
4. Vscode will ask you about using allowing Co pilot invoke the tool from the MCP server, ensure you allow it.
5. The chat will output the answer and also show you it ran add from the MCP server
6. If you leave out the Auth header in the config or ask the chat questions using the tool to many times to quickly, the auth and rate limit policies deployed will deny and limit the requests.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



