M
MCP Sse Client Server Docker
by @dgallitelli
A simple implementation of MCP Client/Server architecture with HTTP SSE transport layer, dockerized.
Created 4/12/2025
Updated about 1 year ago
README
Repository documentation and setup instructions
MCP Client/Server using HTTP SSE with Docker containers
Building client and server
docker build -t mcp-server:latest .
docker build -t mcp-client:latest .
Running the server
docker run -P --network host mcp-server:latest
Running the client
List tools:
docker run -P --network host mcp-client:latest
Get answer to a query:
docker run -P --network host mcp-client:latest "What is 99+201?"
Quick Setup
Installation guide for this server
Install Package (if required)
docker run -i dgallitelli/mcp-sse-client-server-docker
Cursor configuration (mcp.json)
{
"mcpServers": {
"dgallitelli-mcp-sse-client-server-docker": {
"command": "docker",
"args": [
"run",
"-i",
"dgallitelli/mcp-sse-client-server-docker"
]
}
}
}