Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 802 Bytes

File metadata and controls

37 lines (24 loc) · 802 Bytes

Everything MCP Server Example

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

Deployment

kubectl apply -f mcpserver.yaml

This creates:

  • Deployment running the MCP server
  • Service exposing port 3001

Check status:

kubectl get mcpserver everything-mcp-server

Testing

Port-forward to the service:

kubectl port-forward svc/everything-mcp-server 3001:3001

Connect with an MCP client at http://localhost:3001/mcp.

Cleanup

kubectl delete -f mcpserver.yaml