Grafana / warm

Get Dashboard Panel Queries

Extract panel queries, datasource references, and panel titles from a dashboard without mutating it.

Quick Start

aweb inspect grafana.get_dashboard_panel_queries
aweb add grafana
aweb plan "use Grafana get dashboard panel queries 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.get_dashboard_panel_queries');

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

Tool Card

Tool idgrafana.get_dashboard_panel_queries
ProviderGrafana (grafana)
Tool nameget_dashboard_panel_queries
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": {
    "uid": {
      "type": "string",
      "description": "Dashboard UID."
    }
  },
  "required": [
    "uid"
  ],
  "additionalProperties": false
}

Examples

[
  {
    "objective": "Use Grafana get dashboard panel queries in an agent workflow.",
    "args": {
      "uid": "<uid>"
    }
  }
]
Back to MCP Tool Cards