tzolov_mcp-everything-server-docker-image
The Docker image for the MCP Everything server with SSE transport supports multi-architecture builds for arm64 and amd64.
Docker image for the MCP Everything server with SSE transport
MCP Everything server source code: https://github.com/modelcontextprotocol/servers/tree/main/src/everything
Image name: tzolov/mcp-everything-server:v1
Create a multi-architecture image supporting both arm64 and amd64.
Enable Docker Buildx
Buildx is an experimental Docker CLI feature for building multi-architecture images. Itβs included by default in modern Docker versions.
Verify Buildx is installed:
docker buildx version
If not installed, update Docker or enable experimental features in your Docker config file.
Create a new builder instance:
docker buildx create --use --name multiarch-builder
docker buildx inspect --bootstrap
This sets up a Buildx builder that supports multi-architecture builds.
Build and Push Multi-Architecture Image
Use the following steps to build and push the image to Docker Hub:
Log in to Docker Hub (if not already logged in):
docker login
Build and push the image for multiple platforms:
docker buildx build --platform linux/amd64,linux/arm64 -t tzolov/mcp-everything-server:v1 --push .
This command: (1) Builds the image for amd64 and arm64; (2) Pushes the multi-architecture manifest to Docker Hub
Verify the Multi-Architecture Image
After pushing, confirm that the image supports multiple architectures:
Inspect the image manifest:
docker manifest inspect tzolov/mcp-everything-server:v1
Look for entries under manifests showing arm64 and amd64.
Run the image
docker run -p 3001:3001 --rm -it tzolov/mcp-everything-server:v1
Debug
Run the image using the bash entry point
docker run -p 3001:3001 --rm -it --entrypoint bash tzolov/mcp-everything-server:v1
Related MCP Servers
View all cloud_platforms servers βFigma-Context-MCP
by GLips
Framelink Figma MCP Server allows AI-powered coding tools to access Figma design data, enhancing design implementation accuracy.
edgeone-pages-mcp
by TencentEdgeOne
An MCP service for deploying HTML content, folder, and zip file to EdgeOne Pages and obtaining a publicly accessible URL.
HubSpot
by PipedreamHQ
Pipedream MCP Server is a reference implementation that allows you to run your own MCP server for over 2,500 apps and APIs, powered by Pipedream Connect.
mcp-atlassian
by sooperset
Model Context Protocol (MCP) server for Atlassian products (Confluence and Jira). This integration supports both Confluence & Jira Cloud and Server/Data Center deployments.
Nx MCP Server
by nrwl
A Model Context Protocol server implementation for Nx, providing LLMs with deep access to monorepo structures.
mcp-grafana
by grafana
A Model Context Protocol (MCP) server for Grafana that provides access to your Grafana instance and its ecosystem.
firecrawl-mcp-server
by mendableai
Firecrawl MCP Server is a Model Context Protocol server implementation that integrates with Firecrawl for web scraping capabilities.