MCP.so
Sign In

Docker image for the MCP Everything server with SSE transport

@tzolov

About Docker image for the MCP Everything server with SSE transport

Docker image for the MCP everything server with SSE transport

Basic information

Category

Cloud & Infrastructure

Runtime

node

Transports

stdio

Publisher

tzolov

Config

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

{
  "mcpServers": {
    "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?

A Docker image that packages the official MCP Everything server, supporting STDIO, SSE, and StreamableHttp transports. It defaults to the StreamableHttp transport and is based on the main branch of the MCP Everything source code as of April 9, 2025. The image is built for both arm64 and amd64 architectures.

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

Run the container with docker run -p 3001:3001 --rm -it tzolov/mcp-everything-server:v3 (defaults to StreamableHttp). To use a different transport, append the command: node dist/index.js stdio for STDIO or node dist/index.js sse for SSE. For debugging, override the entrypoint with --entrypoint bash.

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

  • Multi-architecture image supporting linux/amd64 and linux/arm64.
  • Supports STDIO, SSE, and StreamableHttp transports.
  • Defaults to StreamableHttp transport.
  • Based on official MCP Everything source code.
  • Published as tzolov/mcp-everything-server:v3 on Docker Hub.

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

  • Testing MCP clients with different transport protocols.
  • Deploying the MCP Everything server in containerized environments.
  • Running the server on ARM-based hardware (e.g., Raspberry Pi) via multi-arch support.
  • Quick setup for MCP development without building the server from source.

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

What transports does the image support?

The image supports STDIO, SSE, and StreamableHttp transports. The default transport is StreamableHttp.

How do I run the image with a specific transport?

For STDIO: docker run -p 3001:3001 --rm -it tzolov/mcp-everything-server:v3 node dist/index.js stdio. For SSE: replace stdio with sse. For StreamableHttp, omit the transport argument.

How was the multi-architecture image built?

It was built using Docker Buildx with the command: docker buildx build --platform linux/amd64,linux/arm64 -t tzolov/mcp-everything-server:v3 --push .

What is the Docker image name and tag?

The image name is tzolov/mcp-everything-server with tag v3.

Can I debug inside the container?

Yes, use --entrypoint bash to start a shell inside the container for debugging.

Comments

More Cloud & Infrastructure MCP servers