MCP Everything Server
by tzolov
This is a Docker image for the MCP Everything server with SSE transport. It supports multi-architecture builds for both arm64 and amd64 platforms.
Last updated: N/A
What is MCP Everything Server?
The MCP Everything server is a component of the Model Context Protocol (MCP) and provides a server implementation with SSE transport. This Docker image packages the server for easy deployment and execution.
How to use MCP Everything Server?
To use this image, first ensure Docker is installed and Buildx is enabled. Build and push the multi-architecture image using the provided docker buildx build
command. Then, run the image using docker run -p 3001:3001 --rm -it tzolov/mcp-everything-server:v1
. You can also debug the image by running it with a bash entry point.
Key features of MCP Everything Server
Dockerized
Multi-architecture support (arm64, amd64)
SSE transport
Easy deployment
Debuggable with bash entrypoint
Use cases of MCP Everything Server
Deploying MCP Everything server in various environments
Testing MCP integrations
Running MCP server on different hardware architectures
Development and debugging of MCP applications
FAQ from MCP Everything Server
How do I verify that Buildx is installed?
How do I verify that Buildx is installed?
Run docker buildx version
in your terminal.
How do I build a multi-architecture image?
How do I build a multi-architecture image?
Use the command docker buildx build --platform linux/amd64,linux/arm64 -t tzolov/mcp-everything-server:v1 --push .
How do I verify the multi-architecture image?
How do I verify the multi-architecture image?
Use the command docker manifest inspect tzolov/mcp-everything-server:v1
and look for entries under manifests showing arm64 and amd64.
What port does the server run on?
What port does the server run on?
The server runs on port 3001.
How do I debug the image?
How do I debug the image?
Run the image with a bash entry point using docker run -p 3001:3001 --rm -it --entrypoint bash tzolov/mcp-everything-server:v1