MCP.so
登录

Docker image for the MCP Everything server with SSE transport

@MCP-Mirror

关于 Docker image for the MCP Everything server with SSE transport

Mirror of

基本信息

分类

云与基础设施

传输方式

stdio

发布者

MCP-Mirror

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

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

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

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.

评论

云与基础设施 分类下的更多 MCP 服务器