MCP.so
Sign In

Docker image for the MCP Everything server with SSE transport

@MCP-Mirror

About Docker image for the MCP Everything server with SSE transport

Mirror of

Basic information

Category

Cloud & Infrastructure

Transports

stdio

Publisher

MCP-Mirror

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "tzolov_mcp-everything-server-docker-image": {
      "command": "docker",
      "args": [
        "buildx",
        "version"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Docker image for the MCP Everything server with SSE transport?

This is a Docker image (tzolov/mcp-everything-server:v1) that packages the MCP Everything server with SSE transport, supporting both arm64 and amd64 architectures. The server provides a comprehensive test suite for the Model Context Protocol and can be run locally for development, testing, or debugging purposes.

How to use Docker image for the MCP Everything server with SSE transport?

Pull and run the image with docker run -p 3001:3001 --rm -it tzolov/mcp-everything-server:v1. For debugging, override the entry point with --entrypoint bash. A multi-architecture image can be built and pushed using Docker Buildx with docker buildx build --platform linux/amd64,linux/arm64 -t tzolov/mcp-everything-server:v1 --push ..

Key features of Docker image for the MCP Everything server with SSE transport

  • Multi‑architecture support for arm64 and amd64.
  • Uses SSE (Server‑Sent Events) transport.
  • Pre‑built Docker image ready to run.
  • Easily debuggable via bash entry point.
  • Buildable with Docker Buildx for cross‑platform deployment.

Use cases of Docker image for the MCP Everything server with SSE transport

  • Running the MCP Everything server locally for protocol testing.
  • Developing or debugging MCP integrations using a containerized server.
  • Deploying the server on different hardware architectures (e.g., ARM‑based devices).
  • Creating reproducible test environments with a standard Docker image.

FAQ from Docker image for the MCP Everything server with SSE transport

How do I run the Docker image?

Run docker run -p 3001:3001 --rm -it tzolov/mcp-everything-server:v1 to start the server on port 3001.

What architectures are supported?

The image supports both linux/amd64 and linux/arm64 platforms.

How can I build and push a multi‑architecture image?

Use Docker Buildx: create a builder instance with docker buildx create --use --name multiarch-builder, then build and push with docker buildx build --platform linux/amd64,linux/arm64 -t tzolov/mcp-everything-server:v1 --push ..

How do I debug the container?

Override the entry point with --entrypoint bash, for example: docker run -p 3001:3001 --rm -it --entrypoint bash tzolov/mcp-everything-server:v1.

Where can I find the source code of the MCP Everything server?

The source code is available at https://github.com/modelcontextprotocol/servers/tree/main/src/everything.

Comments

More Cloud & Infrastructure MCP servers