MCP Catalogs
Home

deploystack vs everything

Side-by-side comparison to help you pick between these two MCP servers.

deploystack
by deploystackio
everything
by modelcontextprotocol
Stars★ 57★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsOps & InfraAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

deploystack · Summary

DeployStack transforms stdio-only MCP servers into HTTP endpoints for automation platforms.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

deploystack · Use cases

  • Workflow automation in n8n using MCP servers as HTTP nodes
  • Team-based MCP server deployment with credential management and access controls
  • Production deployment of MCP servers without DevOps expertise

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

deploystack · Install

Installation

Using DeployStack Cloud

  1. Sign up at [cloud.deploystack.io](https://cloud.deploystack.io)
  2. Connect your GitHub account or browse the MCP catalog
  3. Deploy a repository or install from catalog
  4. Configure credentials if needed
  5. Get your HTTP endpoint URL
  6. Add to your MCP client configuration:
{
  "mcpServers": {
    "deploystack": {
      "type": "http",
      "url": "https://satellite.deploystack.io/mcp"
    }
  }
}

Self-Hosting

git clone https://github.com/deploystackio/deploystack
cd deploystack
docker-compose up

See the [Self-Hosting Documentation](https://docs.deploystack.io/self-hosted/quick-start) for detailed instructions.

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.