MCP Catalogs
Home

airbroke vs everything

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

airbroke
by icoretech
everything
by modelcontextprotocol
Stars★ 215★ 85,748
30d uses
Score4977
Official
Categories
Developer ToolsMonitoringAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

airbroke · Summary

Airbroke is a PostgreSQL-based error tracking service with MCP API integration for LLM/agent connections.

everything · Summary

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

airbroke · Use cases

  • Replace commercial error tracking services like Sentry or Airbrake with a self-hosted solution
  • Integrate error reporting with AI systems through the MCP API for automated issue analysis
  • Manage application errors across multiple projects with OAuth authentication and role-based access

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

airbroke · Install

Install via Docker (recommended):

docker run -p 3000:3000 icoretech/airbroke:latest

Or build from source:

cp .env.dist .env
# Edit .env with your settings
yarn install
yarn build
yarn start

To use with Claude Desktop, add to your config.json:

{
  "mcpServers": {
    "airbroke": {
      "command": "docker",
      "args": ["run", "-p", "3000:3000", "icoretech/airbroke:latest"]
    }
  }
}

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.