Back to Go Micro

MCP Gateway Helm Chart

gateway/mcp/deploy/helm/mcp-gateway/README.md

5.19.13.7 KB
Original Source

MCP Gateway Helm Chart

Deploy the Go Micro MCP Gateway on Kubernetes. The gateway discovers go-micro services via a registry and exposes them as AI-accessible tools through the Model Context Protocol.

Quick Start

bash
helm install mcp-gateway ./deploy/helm/mcp-gateway \
  --set gateway.registry=consul \
  --set gateway.registryAddress=consul:8500

Configuration

ParameterDescriptionDefault
replicaCountNumber of gateway replicas1
image.repositoryContainer imageghcr.io/micro/mcp-gateway
image.tagImage tag (defaults to appVersion)""
gateway.addressListen address:3000
gateway.registryRegistry backend (mdns, consul, etcd)consul
gateway.registryAddressRegistry addressconsul:8500
gateway.rateLimitRequests/second per tool (0=unlimited)0
gateway.rateBurstRate limit burst size20
gateway.authEnable JWT authenticationfalse
gateway.auditEnable audit loggingfalse
gateway.scopesPer-tool scope requirements[]
service.typeKubernetes service typeClusterIP
service.portService port3000
ingress.enabledEnable ingressfalse
autoscaling.enabledEnable HPAfalse
autoscaling.minReplicasMinimum replicas1
autoscaling.maxReplicasMaximum replicas10

Examples

Production with Consul

bash
helm install mcp-gateway ./deploy/helm/mcp-gateway \
  --set replicaCount=3 \
  --set gateway.registry=consul \
  --set gateway.registryAddress=consul.default.svc:8500 \
  --set gateway.auth=true \
  --set gateway.audit=true \
  --set gateway.rateLimit=100 \
  --set autoscaling.enabled=true

With Ingress (nginx)

bash
helm install mcp-gateway ./deploy/helm/mcp-gateway \
  --set ingress.enabled=true \
  --set ingress.className=nginx \
  --set ingress.hosts[0].host=mcp.example.com \
  --set ingress.hosts[0].paths[0].path=/ \
  --set ingress.hosts[0].paths[0].pathType=Prefix \
  --set ingress.tls[0].secretName=mcp-tls \
  --set ingress.tls[0].hosts[0]=mcp.example.com

With Scopes

bash
helm install mcp-gateway ./deploy/helm/mcp-gateway \
  --set gateway.auth=true \
  --set 'gateway.scopes[0]=blog.Blog.Create=blog:write' \
  --set 'gateway.scopes[1]=blog.Blog.Delete=blog:admin'

Architecture

                         Kubernetes Cluster
  ┌──────────────────────────────────────────────────────────┐
  │                                                          │
  │  ┌─────────┐   MCP    ┌─────────────┐   RPC   ┌──────┐ │
  │  │ Ingress │ ───────> │ MCP Gateway │ ──────> │ Svc  │ │
  │  │         │          │  (N pods)   │         │ Pods │ │
  │  └─────────┘          └─────────────┘         └──────┘ │
  │                             │                    │      │
  │                             v                    v      │
  │                        ┌──────────┐                     │
  │                        │  Consul  │                     │
  │                        │ Registry │                     │
  │                        └──────────┘                     │
  └──────────────────────────────────────────────────────────┘