Grafana / warm

List Annotations

List Grafana annotations scoped by dashboard, panel, tag, and time range. Read-only tool used for operator timelines and idempotent annotation sync.

Quick Start

aweb inspect grafana.list_annotations
aweb add grafana
aweb plan "use Grafana list annotations 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_annotations');

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

Tool Card

Tool idgrafana.list_annotations
ProviderGrafana (grafana)
Tool namelist_annotations
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": {
    "dashboardUid": {
      "type": "string",
      "description": "Optional dashboard UID scope."
    },
    "panelId": {
      "type": "integer",
      "description": "Optional panel id scope."
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Optional annotation tags. Multiple tags are matched as AND filters."
    },
    "from": {
      "type": "string",
      "description": "Optional lower time bound. Defaults to the last 7 days."
    },
    "to": {
      "type": "string",
      "description": "Optional upper time bound. Defaults to now."
    },
    "limit": {
      "type": "integer",
      "description": "Maximum result count (default 100, max 500)."
    }
  },
  "additionalProperties": false
}

Examples

[
  {
    "objective": "Use Grafana list annotations in an agent workflow.",
    "args": {
      "dashboardUid": "<dashboardUid>",
      "panelId": "<panelId>",
      "tags": "<tags>",
      "from": "<from>"
    }
  }
]
Back to MCP Tool Cards