MCPStack vs everything
Side-by-side comparison to help you pick between these two MCP servers.
MCPStack by MCP-Pipeline | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30d uses | — | — |
| Score | 39 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 8 mo ago | this month |
MCPStack · Summary
MCPStack is a scikit-learn-like pipeline orchestrator for MCP tools, enabling secure composition and chaining of MCP tools in LLM environments.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MCPStack · Use cases
- Creating secure MCP pipelines for Claude Desktop with restricted tool access
- Orchestrating complex workflows by chaining multiple MCP tools together
- Building reproducible experiments with pre-configured tool presets
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
MCPStack · Install
Installation
Using UV (recommended):
uv add mcpstackUsing pip:
pip install mcpstackPre-commit Hooks
Via UV:
uv run pre-commit installVia pip:
pre-commit installClaude Desktop Configuration
To use MCPStack with Claude Desktop, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"mcpstack": {
"command": "uv",
"args": ["run", "mcpstack", "run"]
}
}
}everything · Install
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-everything