{
"mcpServers": {
"sample-mcp-server-sse": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
sample-mcp-server-sse
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 78 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Sample Mcp Server Sse and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server implementation in Go using the official MCP Go SDK with Server-Sent Events (SSE) transport.
This MCP server provides 3 tools:
Built with the official MCP Go SDK (github.com/modelcontextprotocol/go-sdk), this server:
/sse - SSE endpoint for establishing the event stream (handled by SDK)/health - Health check endpointcd sample-mcp-server-sse
go mod download
go build -o mcp-server
./mcp-server
The server will start on http://localhost:8080
cd sample-mcp-server-sse
# Build for linux/amd64 architecture
docker build -t aliok/mcp-server-sse:latest .
# Push to Docker Hub (or your registry)
docker push aliok/mcp-server-sse:latest
Note: Replace aliok with your Docker Hub username or registry path. The Dockerfile is configured to build for linux/amd64 architecture.
Deploy using kubectl:
# Apply manifests
kubectl apply -f k8s/
Note: The deployment uses aliok/mcp-server-sse:latest. Update k8s/deployment.yaml if using a different registry.
# Check deployment status
kubectl get deployments mcp-server-sse
# Check pods
kubectl get pods -l app=mcp-server-sse
# Check service
kubectl get svc mcp-server-sse
For remote Kubernetes clusters, use kubectl proxy to access the service:
# Start kubectl proxy (this will run in the foreground)
kubectl proxy --port=8001
The service will be available at:
http://localhost:8001/api/v1/namespaces/default/services/mcp-server-sse:http/proxy/
For the SSE endpoint specifically:
http://localhost:8001/api/v1/namespaces/default/services/mcp-server-sse:http/proxy/sse
For the health endpoint:
http://localhost:8001/api/v1/namespaces/default/services/mcp-server-sse:http/proxy/health
kubectl port-forward svc/mcp-server-sse 8080:80
Then access at http://localhost:8080
Create an Ingress resource to expose the service:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: mcp-server-sse
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
rules:
- host: mcp-server.example.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: mcp-server-sse
port:
number: 80
The deployment includes:
/healthTo scale the deployment:
kubectl scale deployment mcp-server-sse --replicas=3
kubectl delete -k k8s/
The MCP Inspector is a visual interface for testing and debugging MCP servers. It provides an interactive way to explore your server's tools and test them without writing code.
Install the MCP Inspector:
npx @modelcontextprotocol/inspe
... [View full README on GitHub](https://github.com/mcp-kube/sample-mcp-server-sse#readme)