Grafana / warm

Generate Deeplink

Generate a Grafana deeplink for dashboards, panels, folders, or an arbitrary in-instance path without calling external write APIs.

Quick Start

aweb inspect grafana.generate_deeplink
aweb add grafana
aweb plan "use Grafana generate deeplink 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.generate_deeplink');

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

Tool Card

Tool idgrafana.generate_deeplink
ProviderGrafana (grafana)
Tool namegenerate_deeplink
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": {
    "resource": {
      "type": "string",
      "enum": [
        "dashboard",
        "panel",
        "folder",
        "path"
      ],
      "description": "Target resource type."
    },
    "uid": {
      "type": "string",
      "description": "Dashboard or folder UID."
    },
    "panelId": {
      "type": "integer",
      "description": "Panel id for panel links."
    },
    "path": {
      "type": "string",
      "description": "Raw Grafana-relative path when resource=path (for example /alerting/list)."
    },
    "from": {
      "type": "string",
      "description": "Optional from time expression or timestamp."
    },
    "to": {
      "type": "string",
      "description": "Optional to time expression or timestamp."
    },
    "theme": {
      "type": "string",
      "enum": [
        "light",
        "dark"
      ],
      "description": "Optional theme hint."
    }
  },
  "required": [
    "resource"
  ],
  "additionalProperties": false
}

Examples

[
  {
    "objective": "Use Grafana generate deeplink in an agent workflow.",
    "args": {
      "resource": "<resource>",
      "uid": "<uid>",
      "panelId": "<panelId>",
      "path": "<path>"
    }
  }
]
Back to MCP Tool Cards