everything
Officialby modelcontextprotocol·★ 85,748·Score 77
Official MCP test server exercising all protocol features for client builders.
Overview
This server, maintained by the Model Context Protocol organization, is designed to exercise every feature of the MCP protocol. It implements prompts, tools, resources, sampling, and more, making it an essential testing tool for developers building MCP clients. The repository includes comprehensive documentation on architecture, project structure, startup process, server features, extension points, and how it works. It supports multiple transport methods including stdio, SSE (deprecated), and Streamable HTTP. Installation is straightforward via npx, Docker, or global npm package. The server is actively maintained with recent commits and high community engagement (85k+ stars).
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
You should choose this when developing or testing MCP clients and need a comprehensive testbed that exercises all protocol features.
When NOT to choose this
Don't choose this for production use cases as it's designed as a test server, not a practical utility.
Comparable tools
Installation
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingFAQ
- What is the purpose of this server?
- It is a test server for MCP client builders, exercising all protocol features (tools, resources, prompts, sampling, etc.). It is not meant for production use.
- Which transport methods are supported?
- stdio (default), Streamable HTTP, and SSE (deprecated).
On Hacker News
Recent discussion from the developer community.
- Story by vinnyglennon · 2025-03-20
Compare everything with
Last updated · Auto-generated from public README + GitHub signals.