MCP Catalogs
Home

sentry-mcp vs everything

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

sentry-mcp
by getsentry
everything
by modelcontextprotocol
Stars★ 691★ 85,748
30d uses
Score5377
Official
Categories
Developer ToolsMonitoringAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

sentry-mcp · Summary

MCP server for Sentry integration with LLMs, providing error tracking and debugging capabilities.

everything · Summary

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

sentry-mcp · Use cases

  • Debugging application errors with natural language queries
  • Tracking and analyzing application performance issues
  • Integrating Sentry error reporting into AI coding assistants

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

sentry-mcp · Install

Installation

Claude Code Plugin

claude plugin marketplace add getsentry/sentry-mcp
claude plugin install sentry-mcp@sentry-mcp

MCP Configuration

{
  "mcpServers": {
    "sentry": {
      "command": "npx",
      "args": ["@sentry/mcp-server"],
      "env": {
        "SENTRY_ACCESS_TOKEN": "your-token",
        "EMBEDDED_AGENT_PROVIDER": "openai",
        "OPENAI_API_KEY": "sk-..."
      }
    }
  }
}

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.