A containerized version of "Everything MCP Server"
Repository: modelcontextprotocol/servers
This MCP server attempts to exercise all the features of the MCP protocol. It is not intended to be a useful server, but rather a test server for builders of MCP clients. It implements prompts, tools, resources, sampling, and more to showcase MCP capabilities.
The containers are built automatically and are available on the GitHub Container Registry.
- Pull the Docker image:
docker pull ghcr.io/metorial/mcp-container--modelcontextprotocol--servers--everything
- Run the container:
docker run -i --rm \
ghcr.io/metorial/mcp-container--modelcontextprotocol--servers--everything "cd ./src/everything && node ./dist/index.js"
--rm
removes the container after it exits, so you don't have to clean up manually.-i
allows you to interact with the container in your terminal.
{
"mcpServers": {
"everything": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--modelcontextprotocol--servers--everything",
"cd ./src/everything && node ./dist/index.js"
],
"env": {}
}
}
}
Please refer to the license provided in the project repository for more information.
Contributions are welcome! If you notice any issues or have suggestions for improvements, please open an issue or submit a pull request.
Containerized with ❤️ by Metorial