MCP Catalogs
Home

dotbot vs everything

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

dotbot
by andresharpe
everything
by modelcontextprotocol
Stars★ 50★ 85,748
30d uses
Score4577
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePowerShellTypeScript
Last committhis monththis month

dotbot · Summary

Zero-dependency MCP server for structured, auditable AI-assisted development in teams.

everything · Summary

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

dotbot · Use cases

  • Team-based AI development with auditable trails for compliance and knowledge sharing
  • Multi-step AI coding workflows with task dependencies and model selection per task
  • Enterprise workflow and stack registry for standardizing AI-assisted development processes

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

dotbot · Install

Installation

  1. **Install dotbot globally**:
Install-Module Dotbot -Scope CurrentUser
  1. **Initialize in your project**:
cd your-project
dotbot init
dotbot init -Workflow <workflow-name> -Stack <stack-name>
  1. **Configure MCP Server** in Claude Desktop or similar:
{
  "mcpServers": {
    "dotbot": {
      "command": "pwsh",
      "args": ["-NoProfile", "-File", ".bot/systems/mcp/dotbot-mcp.ps1"]
    }
  }
}
  1. **Start the web dashboard**:
.bot\go.ps1

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.