feat: add Helm chart for deploying MCP servers. Fixes #1122#3845
Open
yaswanthkumar1995 wants to merge 6 commits intomodelcontextprotocol:mainfrom
Open
feat: add Helm chart for deploying MCP servers. Fixes #1122#3845yaswanthkumar1995 wants to merge 6 commits intomodelcontextprotocol:mainfrom
yaswanthkumar1995 wants to merge 6 commits intomodelcontextprotocol:mainfrom
Conversation
…1122) Adds a new Helm chart under charts/mcp-servers that deploys multiple MCP servers from a single values list, with optional HPA/PDB/PVC/NetworkPolicy and HTTPRoute/Ingress support.
…rs-chart feat: Add mcp-servers Helm chart with resource templates (modelcontextprotocol#1122) add Helm chart for deploying MCP servers
…rs-chart fix(hpa): use deep merge for horizontal pod autoscaler config overrides
Author
|
@jspahrsummers @olaservo @localden — this adds a Helm chart for deploying MCP servers on Kubernetes (fixes #1122). Would appreciate a review when you get a chance. Happy to adjust the approach based on feedback. |
Author
|
/assign |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds a production-ready Helm chart under
charts/mcp-servers/that deploys one or more Model Context Protocol servers on Kubernetes from a singlemcpServers[]values list. Each server entry generates its own Deployment, Service, ServiceAccount, and optional supporting resources — all configurable via per-server overrides or shared global defaults.Fixes #1122
Server Details
charts/mcp-servers/directory (15 files, 698 additions)Motivation and Context
There is currently no standardized way to deploy MCP servers on Kubernetes. Issue #1122 requested an enterprise deployment blueprint to lower adoption barriers. This chart provides a batteries-included, single-chart solution that handles the full lifecycle of deploying MCP server workloads on Kubernetes — from basic deployments to production-grade setups with autoscaling, network policies, and persistent storage.
How Has This Been Tested?
helm templaterendering validated for all resource templatesBreaking Changes
None — this is a net-new addition with no changes to existing code.
Types of changes
Checklist
Additional context
Chart structure
Supported resources per MCP server
apps/v1enabled: true)v1v1serviceAccount.create: true(default)rbac.authorization.k8s.io/v1rbac.create: trueautoscaling/v2hpa.enabled: truepolicy/v1pdb.enabled: truev1persistence.enabled: truenetworking.k8s.io/v1ingress.enabled: truegateway.networking.k8s.io/v1httpRoute.enabled: truenetworking.k8s.io/v1networkPolicy.enabled: trueQuick start