everything vs signoz-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | signoz-mcp-server by SigNoz | |
|---|---|---|
| Stars | ★ 85,748 | ★ 92 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | MonitoringDeveloper ToolsOps & Infra |
| Language | TypeScript | Go |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
signoz-mcp-server · Summary
MCP server providing seamless access to SigNoz observability data through AI assistants and LLMs.
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
signoz-mcp-server · Use cases
- AI assistant debugging production issues by querying metrics and traces
- Automated alert management and creation through conversational interfaces
- Dynamic dashboard generation based on natural language requests
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-everythingsignoz-mcp-server · Install
Installation
Cloud Connection
Add this configuration to your MCP client:
{
"mcpServers": {
"signoz": {
"url": "https://mcp.<region>.signoz.cloud/mcp"
}
}
}Self-Hosted Installation
Download binary:
curl -L https://github.com/SigNoz/signoz-mcp-server/releases/latest/download/signoz-mcp-server_linux_amd64.tar.gz | tar xzRun with environment variables:
SIGNOZ_URL=https://your-signoz-instance.com \
SIGNOZ_API_KEY=your-api-key \
./signoz-mcp-serverClaude Desktop configuration:
{
"mcpServers": {
"signoz": {
"command": "/absolute/path/to/signoz-mcp-server",
"env": {
"SIGNOZ_URL": "https://your-signoz-instance.com",
"SIGNOZ_API_KEY": "your-api-key-here"
}
}
}
}