Grafana / warm

List Alert Rules

List Grafana alert rules through the provisioning API. Supports optional title and folder filters.

Quick Start

aweb inspect grafana.list_alert_rules
aweb add grafana
aweb plan "use Grafana list alert rules in an agent workflow"
import Aweb, { Agent } from '@aweb/sdk';

const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const agent = new Agent({ tools: aweb.tools });

agent.add('grafana');

const plan = await agent.plan('Use Grafana for this workflow');
const tool = await aweb.tools.inspect('grafana.list_alert_rules');

console.log(plan.nextAction);
console.log(tool.inputSchema);

Tool Card

Tool idgrafana.list_alert_rules
ProviderGrafana (grafana)
Tool namelist_alert_rules
Activationwarm
Healthhealthy
Trust score1.00
Transportstreamable_http
Latencynot yet measured
Costunknown

Requirements and Governance

Authstatic_fields
Credentialsetup_required
Workspaceglobal
Approvalnone
RiskREAD
Permissionsread
Credential setup/api/mcp-warehouse/credentials/grafana/init

Schemas

{
  "type": "object",
  "properties": {
    "titleQuery": {
      "type": "string",
      "description": "Optional title substring filter."
    },
    "folderUid": {
      "type": "string",
      "description": "Optional folder UID filter."
    },
    "dashboardUid": {
      "type": "string",
      "description": "Optional dashboard UID filter."
    },
    "limit": {
      "type": "integer",
      "description": "Maximum result count (default 100, max 500)."
    }
  },
  "additionalProperties": false
}

Examples

[
  {
    "objective": "Use Grafana list alert rules in an agent workflow.",
    "args": {
      "titleQuery": "<titleQuery>",
      "folderUid": "<folderUid>",
      "dashboardUid": "<dashboardUid>",
      "limit": "<limit>"
    }
  }
]
Back to MCP Tool Cards