MCP Catalogs
Home

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
Score3977
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit8 mo agothis 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 mcpstack

Using pip:

pip install mcpstack

Pre-commit Hooks

Via UV:

uv run pre-commit install

Via pip:

pre-commit install

Claude 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
Comparison generated from public README + GitHub signals. Last updated automatically.