signoz-mcp-server
by SigNoz·★ 92·Score 47
MCP server providing seamless access to SigNoz observability data through AI assistants and LLMs.
Overview
The SigNoz MCP server allows AI assistants to query observability data including metrics, traces, logs, alerts, dashboards, and services using natural language. It supports both SigNoz Cloud and self-hosted deployments with multiple transport modes (stdio and HTTP) and authentication options. The server provides comprehensive tooling for monitoring and observability tasks, including querying metrics, managing alerts, working with dashboards, and searching through traces and logs.
Try asking AI
After installing, here are 4 things you can ask your AI assistant:
When to choose this
Choose this if you're already using SigNoz for observability and want to enable AI-powered querying of your metrics, traces, logs, alerts, and dashboards through natural language.
When NOT to choose this
Don't choose this if you're not using SigNoz for observability, as it requires a SigNoz instance and won't work with other monitoring systems.
Tools this server exposes
12 tools extracted from the READMEsignoz_list_metricsSearch and list available metrics
signoz_query_metricsQuery metrics with smart aggregation defaults
signoz_list_alertsList firing/silenced/inhibited Alertmanager alert instances
signoz_list_alert_rulesList configured alert rules, including inactive and disabled rules
signoz_get_alertGet an alert rule definition by ID
signoz_create_alertCreate a new alert rule
signoz_list_dashboardsList all dashboards with summaries
signoz_get_dashboardGet full dashboard configuration
signoz_create_dashboardCreate a new dashboard
signoz_search_logsSearch logs with flexible filtering
signoz_search_tracesSearch traces with flexible filtering
signoz_get_trace_detailsGet full trace with all spans
Comparable tools
Installation
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"
}
}
}
}FAQ
- What versions of SigNoz are supported?
- Alert rule tools require SigNoz v0.120.0 or newer. Older versions will return HTTP 404 for alert-related tools.
- What authentication methods are supported?
- The server supports both direct API key authentication and OAuth for multi-tenant/cloud deployments.
Compare signoz-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.