MCP Catalogs
Home

signoz-mcp-server

by SigNoz·92·Score 47

MCP server providing seamless access to SigNoz observability data through AI assistants and LLMs.

monitoringdeveloper-toolsops-infra
32
Forks
18
Open issues
this month
Last commit
2d ago
Indexed

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:

you:AI assistant debugging production issues by querying metrics and traces
you:Automated alert management and creation through conversational interfaces
you:Dynamic dashboard generation based on natural language requests
you:What authentication methods are supported?

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 README
  • signoz_list_metrics

    Search and list available metrics

  • signoz_query_metrics

    Query metrics with smart aggregation defaults

  • signoz_list_alerts

    List firing/silenced/inhibited Alertmanager alert instances

  • signoz_list_alert_rules

    List configured alert rules, including inactive and disabled rules

  • signoz_get_alert

    Get an alert rule definition by ID

  • signoz_create_alert

    Create a new alert rule

  • signoz_list_dashboards

    List all dashboards with summaries

  • signoz_get_dashboard

    Get full dashboard configuration

  • signoz_create_dashboard

    Create a new dashboard

  • signoz_search_logs

    Search logs with flexible filtering

  • signoz_search_traces

    Search traces with flexible filtering

  • signoz_get_trace_details

    Get full trace with all spans

Comparable tools

grafana-mcpprometheus-mcpdatadog-mcp

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 xz

Run with environment variables:

SIGNOZ_URL=https://your-signoz-instance.com \
SIGNOZ_API_KEY=your-api-key \
./signoz-mcp-server

Claude 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.