This example deploys the Everything MCP Server, one of the reference servers from the Model Context Protocol project. It exercises all MCP features including prompts, resources, and tools.
Source code: https://github.com/modelcontextprotocol/servers/tree/main/src/everything
kubectl apply -f mcpserver.yamlThis creates:
- Deployment running the MCP server
- Service exposing port 3001
Check status:
kubectl get mcpserver everything-mcp-serverPort-forward to the service:
kubectl port-forward svc/everything-mcp-server 3001:3001Connect with an MCP client at http://localhost:3001/mcp.
kubectl delete -f mcpserver.yaml