drio
Open app

Docker image for the MCP Everything server with SSE transport

Source

Docker image for the MCP everything server with SSE transport

Catalog onlyCatalog onlySTDIO

Overview

MCP Everything Server is a Docker image designed to run a server with Server-Sent Events (SSE) transport functionality.

To use the MCP Everything Server, you first build the Docker image using the provided Dockerfile, then you can run the server using Docker commands.

  • Easy to build and run with Docker - Supports Server-Sent Events for real-time communication - Debugging capabilities with bash entry point
  1. Building real-time web applications that require live data updates.
  2. Developing APIs that leverage SSE for efficient data streaming.
  3. Debugging containerized applications using a bash shell.

Add to your AI client

Use these steps to connect Docker image for the MCP Everything server with SSE transport in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-everything-server-docker-image-tzolov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-everything-server-docker-image-tzolov"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-everything-server-docker-image-tzolov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-everything-server-docker-image-tzolov"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-everything-server-docker-image-tzolov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-everything-server-docker-image-tzolov"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-everything-server-docker-image-tzolov": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-everything-server-docker-image-tzolov"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-everything-server-docker-image-tzolov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-everything-server-docker-image-tzolov"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-everything-server-docker-image-tzolov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-everything-server-docker-image-tzolov"
      ]
    }
  }
}

FAQ

What is the command to build the Docker image?

You can build the image using the command: `docker build -t tzolov/mcp-everything-server:v1 .`

How do I run the server once the image is built?

You can run the server using the command: `docker run -p 3001:3001 --rm -it tzolov/mcp-everything-server:v1`.

Can I debug the server while it is running?

Yes, you can use the command: `docker run -p 3001:3001 --rm -it --entrypoint bash tzolov/mcp-everything-server:v1` to run the image with a bash entry point for debugging purposes.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":352,"uuid":"c3b731a0-93d5-4bbc-9c55-5cdf0272940c","name":"mcp-everything-server-docker-image","title":"Docker image for the MCP Everything server with SSE transport","description":"Docker image for the MCP everything server with SSE transport","avatar_url":"https://avatars.githubusercontent.com/u/1351573?v=4","created_at":"2024-12-13T13:20:55.659Z","updated_at":"2024-12-13T15:09:10.105Z","status":"created","author_name":"tzolov","author_avatar_url":"https://avatars.githubusercontent.com/u/1351573?v=4","tags":"[]","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/tzolov/mcp-everything-server-docker-image","target":"_self","content":"$29","summary":"$2a","img_url":null,"type":null,"metadata":null,"user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]

Docker image for the MCP Everything server with SSE transport — MCP Registry