[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-grafana-assistant-mcp":3,"mdc--uaym9w-key":31,"related-org-grafana-assistant-mcp":1082,"related-repo-grafana-assistant-mcp":1273},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":29,"mdContent":30},"assistant-mcp","connect coding agents to Grafana Cloud","Connect AI coding agents (Claude Code, Cursor, VS Code, OpenAI Codex) to Grafana Cloud via the `mcp-grafana` Model Context Protocol server. Installs the server with `go install`, generates a Grafana service-account token, wires `~\u002F.claude\u002Fsettings.json` or `~\u002F.cursor\u002Fmcp.json` with the `command` + `env` block, runs `--disable-write` for safer read-only sessions, switches to SSE transport for team-shared \u002F VS Code setups, and verifies with `\u002Fmcp` + a `list_datasources` round-trip. Use when connecting Claude Code to Grafana, setting up MCP for Grafana, configuring the Grafana MCP server, using Grafana tools in Cursor\u002FVS Code, querying Grafana from an AI agent, sharing the MCP server across a team — even when the user says \"give my agent Grafana access\", \"let Claude see my metrics\", or \"Cursor + Grafana\" without saying \"MCP\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"grafana","Grafana","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fgrafana.jpg",[12,16,19],{"name":13,"slug":14,"type":15},"MCP","mcp","tag",{"name":17,"slug":18,"type":15},"Agents","agents",{"name":9,"slug":8,"type":15},189,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fskills","2026-07-12T07:44:20.615856","Apache-2.0",16,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":28},[],null,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fgrafana-cloud\u002Fassistant-mcp","---\nname: assistant-mcp\nlicense: Apache-2.0\ndescription: Connect AI coding agents (Claude Code, Cursor, VS Code, OpenAI Codex) to Grafana Cloud via the `mcp-grafana` Model Context Protocol server. Installs the server with `go install`, generates a Grafana service-account token, wires `~\u002F.claude\u002Fsettings.json` or `~\u002F.cursor\u002Fmcp.json` with the `command` + `env` block, runs `--disable-write` for safer read-only sessions, switches to SSE transport for team-shared \u002F VS Code setups, and verifies with `\u002Fmcp` + a `list_datasources` round-trip. Use when connecting Claude Code to Grafana, setting up MCP for Grafana, configuring the Grafana MCP server, using Grafana tools in Cursor\u002FVS Code, querying Grafana from an AI agent, sharing the MCP server across a team — even when the user says \"give my agent Grafana access\", \"let Claude see my metrics\", or \"Cursor + Grafana\" without saying \"MCP\".\n---\n\n# Grafana Cloud MCP Server Setup\n\nThe Grafana MCP server exposes Grafana Cloud capabilities as tools that AI agents can call via the Model Context Protocol. Agents can then query metrics, search dashboards, manage alerts, investigate incidents, and interact with Fleet Management without leaving the coding environment.\n\nTransports: `stdio` (agent spawns the server as a subprocess, simplest), or `SSE` (server runs independently, agents connect via HTTP — see [references\u002Fsse-transport.md](references\u002Fsse-transport.md)).\n\n## Common Workflows\n\n### Connecting Claude Code to Grafana (stdio)\n\n```bash\n# 1. Install the server\ngo install github.com\u002Fgrafana\u002Fmcp-grafana\u002Fcmd\u002Fmcp-grafana@latest\n\n# 2. Verify the binary\nmcp-grafana --version\n# If \"command not found\": ensure $GOPATH\u002Fbin (or $HOME\u002Fgo\u002Fbin) is on PATH.\n```\n\n3. **Get a service-account token**: Grafana Cloud → Administration → Service Accounts → create with `Viewer` role (add `Editor` only if you need writes) → generate token. Note the Grafana URL (e.g. `https:\u002F\u002Fmyorg.grafana.net`).\n\n4. **Wire `~\u002F.claude\u002Fsettings.json`** (or project-local `.claude\u002Fsettings.json`):\n\n   ```json\n   {\n     \"mcpServers\": {\n       \"grafana\": {\n         \"command\": \"mcp-grafana\",\n         \"args\": [\"--disable-write\"],\n         \"env\": {\n           \"GRAFANA_URL\": \"https:\u002F\u002Fmyorg.grafana.net\",\n           \"GRAFANA_API_KEY\": \"glsa_xxxx\"\n         }\n       }\n     }\n   }\n   ```\n\n   `--disable-write` is the safer default — drop it once you've verified the read path works.\n\n5. **Restart Claude Code, then verify**:\n\n   ```\n   \u002Fmcp\n   ```\n\n   The `grafana` server should appear with its tool list. Then ask:\n\n   ```\n   What data sources are configured in my Grafana instance?\n   ```\n\n   A clean response = working. If the tool call fails:\n   - Check `GRAFANA_URL` has no trailing slash\n   - Confirm the API key hasn't expired\n   - Re-run with `mcp-grafana --debug` to see raw request\u002Fresponse\n\n### Connecting Cursor\n\nSame Grafana token. Settings → Features → MCP Servers (or edit `~\u002F.cursor\u002Fmcp.json`):\n\n```json\n{\n  \"mcpServers\": {\n    \"grafana\": {\n      \"command\": \"mcp-grafana\",\n      \"args\": [\"--disable-write\"],\n      \"env\": {\n        \"GRAFANA_URL\": \"https:\u002F\u002Fmyorg.grafana.net\",\n        \"GRAFANA_API_KEY\": \"glsa_xxxx\"\n      }\n    }\n  }\n}\n```\n\nVerify the same way — Cursor surfaces MCP servers in its agent panel; run a query like \"list dashboards tagged kubernetes\".\n\n### Sharing the server across a team (SSE)\n\nSwitch from `stdio` to `SSE` so the server runs once and many agents connect to it. Full setup with VS Code config in [references\u002Fsse-transport.md](references\u002Fsse-transport.md).\n\n## Security considerations\n\n- API keys belong in env vars or a secrets manager — never in committed files.\n- Use `--disable-write` for shared environments and CI; only lift it on the specific machine where the agent should be allowed to mutate Grafana.\n- Scope service-account permissions to the minimum: `Viewer` is enough for queries and dashboard reads. Only grant `Editor` when the agent needs to create dashboards or annotations.\n- Rotate tokens periodically via Administration → Service Accounts.\n\n## References\n\n- [`references\u002Ftools.md`](references\u002Ftools.md) — full list of MCP tools exposed (query \u002F dashboard \u002F alerting \u002F Fleet Management \u002F annotations) and how to discover the live set\n- [`references\u002Fsse-transport.md`](references\u002Fsse-transport.md) — SSE setup for team sharing and VS Code, with stdio-vs-SSE decision matrix + common failure modes\n- [`references\u002Fa2a.md`](references\u002Fa2a.md) — Agent-to-Agent (A2A) protocol for delegating reasoning to the Grafana Assistant (vs direct tool calls via MCP)\n\n## External resources\n\n- [Grafana MCP server (github.com\u002Fgrafana\u002Fmcp-grafana)](https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fmcp-grafana)\n- [Model Context Protocol specification](https:\u002F\u002Fspec.modelcontextprotocol.io\u002F)\n- [Grafana Cloud API documentation](https:\u002F\u002Fgrafana.com\u002Fdocs\u002Fgrafana-cloud\u002Fdeveloper-resources\u002Fapi-reference\u002F)\n- [Grafana Assistant documentation](https:\u002F\u002Fgrafana.com\u002Fdocs\u002Fgrafana-cloud\u002Fmachine-learning\u002Fassistant\u002F)\n",{"data":32,"body":33},{"name":4,"license":23,"description":6},{"type":34,"children":35},"root",[36,45,51,81,88,95,181,622,628,640,890,895,901,926,932,976,982,1026,1032,1076],{"type":37,"tag":38,"props":39,"children":41},"element","h1",{"id":40},"grafana-cloud-mcp-server-setup",[42],{"type":43,"value":44},"text","Grafana Cloud MCP Server Setup",{"type":37,"tag":46,"props":47,"children":48},"p",{},[49],{"type":43,"value":50},"The Grafana MCP server exposes Grafana Cloud capabilities as tools that AI agents can call via the Model Context Protocol. Agents can then query metrics, search dashboards, manage alerts, investigate incidents, and interact with Fleet Management without leaving the coding environment.",{"type":37,"tag":46,"props":52,"children":53},{},[54,56,63,65,71,73,79],{"type":43,"value":55},"Transports: ",{"type":37,"tag":57,"props":58,"children":60},"code",{"className":59},[],[61],{"type":43,"value":62},"stdio",{"type":43,"value":64}," (agent spawns the server as a subprocess, simplest), or ",{"type":37,"tag":57,"props":66,"children":68},{"className":67},[],[69],{"type":43,"value":70},"SSE",{"type":43,"value":72}," (server runs independently, agents connect via HTTP — see ",{"type":37,"tag":74,"props":75,"children":77},"a",{"href":76},"references\u002Fsse-transport.md",[78],{"type":43,"value":76},{"type":43,"value":80},").",{"type":37,"tag":82,"props":83,"children":85},"h2",{"id":84},"common-workflows",[86],{"type":43,"value":87},"Common Workflows",{"type":37,"tag":89,"props":90,"children":92},"h3",{"id":91},"connecting-claude-code-to-grafana-stdio",[93],{"type":43,"value":94},"Connecting Claude Code to Grafana (stdio)",{"type":37,"tag":96,"props":97,"children":102},"pre",{"className":98,"code":99,"language":100,"meta":101,"style":101},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# 1. Install the server\ngo install github.com\u002Fgrafana\u002Fmcp-grafana\u002Fcmd\u002Fmcp-grafana@latest\n\n# 2. Verify the binary\nmcp-grafana --version\n# If \"command not found\": ensure $GOPATH\u002Fbin (or $HOME\u002Fgo\u002Fbin) is on PATH.\n","bash","",[103],{"type":37,"tag":57,"props":104,"children":105},{"__ignoreMap":101},[106,118,139,149,158,172],{"type":37,"tag":107,"props":108,"children":111},"span",{"class":109,"line":110},"line",1,[112],{"type":37,"tag":107,"props":113,"children":115},{"style":114},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[116],{"type":43,"value":117},"# 1. Install the server\n",{"type":37,"tag":107,"props":119,"children":121},{"class":109,"line":120},2,[122,128,134],{"type":37,"tag":107,"props":123,"children":125},{"style":124},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[126],{"type":43,"value":127},"go",{"type":37,"tag":107,"props":129,"children":131},{"style":130},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[132],{"type":43,"value":133}," install",{"type":37,"tag":107,"props":135,"children":136},{"style":130},[137],{"type":43,"value":138}," github.com\u002Fgrafana\u002Fmcp-grafana\u002Fcmd\u002Fmcp-grafana@latest\n",{"type":37,"tag":107,"props":140,"children":142},{"class":109,"line":141},3,[143],{"type":37,"tag":107,"props":144,"children":146},{"emptyLinePlaceholder":145},true,[147],{"type":43,"value":148},"\n",{"type":37,"tag":107,"props":150,"children":152},{"class":109,"line":151},4,[153],{"type":37,"tag":107,"props":154,"children":155},{"style":114},[156],{"type":43,"value":157},"# 2. Verify the binary\n",{"type":37,"tag":107,"props":159,"children":161},{"class":109,"line":160},5,[162,167],{"type":37,"tag":107,"props":163,"children":164},{"style":124},[165],{"type":43,"value":166},"mcp-grafana",{"type":37,"tag":107,"props":168,"children":169},{"style":130},[170],{"type":43,"value":171}," --version\n",{"type":37,"tag":107,"props":173,"children":175},{"class":109,"line":174},6,[176],{"type":37,"tag":107,"props":177,"children":178},{"style":114},[179],{"type":43,"value":180},"# If \"command not found\": ensure $GOPATH\u002Fbin (or $HOME\u002Fgo\u002Fbin) is on PATH.\n",{"type":37,"tag":182,"props":183,"children":184},"ol",{"start":141},[185,220,543],{"type":37,"tag":186,"props":187,"children":188},"li",{},[189,195,197,203,205,211,213,219],{"type":37,"tag":190,"props":191,"children":192},"strong",{},[193],{"type":43,"value":194},"Get a service-account token",{"type":43,"value":196},": Grafana Cloud → Administration → Service Accounts → create with ",{"type":37,"tag":57,"props":198,"children":200},{"className":199},[],[201],{"type":43,"value":202},"Viewer",{"type":43,"value":204}," role (add ",{"type":37,"tag":57,"props":206,"children":208},{"className":207},[],[209],{"type":43,"value":210},"Editor",{"type":43,"value":212}," only if you need writes) → generate token. Note the Grafana URL (e.g. ",{"type":37,"tag":57,"props":214,"children":216},{"className":215},[],[217],{"type":43,"value":218},"https:\u002F\u002Fmyorg.grafana.net",{"type":43,"value":80},{"type":37,"tag":186,"props":221,"children":222},{},[223,234,236,242,244,532,536,541],{"type":37,"tag":190,"props":224,"children":225},{},[226,228],{"type":43,"value":227},"Wire ",{"type":37,"tag":57,"props":229,"children":231},{"className":230},[],[232],{"type":43,"value":233},"~\u002F.claude\u002Fsettings.json",{"type":43,"value":235}," (or project-local ",{"type":37,"tag":57,"props":237,"children":239},{"className":238},[],[240],{"type":43,"value":241},".claude\u002Fsettings.json",{"type":43,"value":243},"):",{"type":37,"tag":96,"props":245,"children":249},{"className":246,"code":247,"language":248,"meta":101,"style":101},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"mcpServers\": {\n    \"grafana\": {\n      \"command\": \"mcp-grafana\",\n      \"args\": [\"--disable-write\"],\n      \"env\": {\n        \"GRAFANA_URL\": \"https:\u002F\u002Fmyorg.grafana.net\",\n        \"GRAFANA_API_KEY\": \"glsa_xxxx\"\n      }\n    }\n  }\n}\n","json",[250],{"type":37,"tag":57,"props":251,"children":252},{"__ignoreMap":101},[253,262,291,315,355,398,422,461,496,505,514,523],{"type":37,"tag":107,"props":254,"children":255},{"class":109,"line":110},[256],{"type":37,"tag":107,"props":257,"children":259},{"style":258},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[260],{"type":43,"value":261},"{\n",{"type":37,"tag":107,"props":263,"children":264},{"class":109,"line":120},[265,270,276,281,286],{"type":37,"tag":107,"props":266,"children":267},{"style":258},[268],{"type":43,"value":269},"  \"",{"type":37,"tag":107,"props":271,"children":273},{"style":272},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[274],{"type":43,"value":275},"mcpServers",{"type":37,"tag":107,"props":277,"children":278},{"style":258},[279],{"type":43,"value":280},"\"",{"type":37,"tag":107,"props":282,"children":283},{"style":258},[284],{"type":43,"value":285},":",{"type":37,"tag":107,"props":287,"children":288},{"style":258},[289],{"type":43,"value":290}," {\n",{"type":37,"tag":107,"props":292,"children":293},{"class":109,"line":141},[294,299,303,307,311],{"type":37,"tag":107,"props":295,"children":296},{"style":258},[297],{"type":43,"value":298},"    \"",{"type":37,"tag":107,"props":300,"children":301},{"style":124},[302],{"type":43,"value":8},{"type":37,"tag":107,"props":304,"children":305},{"style":258},[306],{"type":43,"value":280},{"type":37,"tag":107,"props":308,"children":309},{"style":258},[310],{"type":43,"value":285},{"type":37,"tag":107,"props":312,"children":313},{"style":258},[314],{"type":43,"value":290},{"type":37,"tag":107,"props":316,"children":317},{"class":109,"line":151},[318,323,329,333,337,342,346,350],{"type":37,"tag":107,"props":319,"children":320},{"style":258},[321],{"type":43,"value":322},"      \"",{"type":37,"tag":107,"props":324,"children":326},{"style":325},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[327],{"type":43,"value":328},"command",{"type":37,"tag":107,"props":330,"children":331},{"style":258},[332],{"type":43,"value":280},{"type":37,"tag":107,"props":334,"children":335},{"style":258},[336],{"type":43,"value":285},{"type":37,"tag":107,"props":338,"children":339},{"style":258},[340],{"type":43,"value":341}," \"",{"type":37,"tag":107,"props":343,"children":344},{"style":130},[345],{"type":43,"value":166},{"type":37,"tag":107,"props":347,"children":348},{"style":258},[349],{"type":43,"value":280},{"type":37,"tag":107,"props":351,"children":352},{"style":258},[353],{"type":43,"value":354},",\n",{"type":37,"tag":107,"props":356,"children":357},{"class":109,"line":160},[358,362,367,371,375,380,384,389,393],{"type":37,"tag":107,"props":359,"children":360},{"style":258},[361],{"type":43,"value":322},{"type":37,"tag":107,"props":363,"children":364},{"style":325},[365],{"type":43,"value":366},"args",{"type":37,"tag":107,"props":368,"children":369},{"style":258},[370],{"type":43,"value":280},{"type":37,"tag":107,"props":372,"children":373},{"style":258},[374],{"type":43,"value":285},{"type":37,"tag":107,"props":376,"children":377},{"style":258},[378],{"type":43,"value":379}," [",{"type":37,"tag":107,"props":381,"children":382},{"style":258},[383],{"type":43,"value":280},{"type":37,"tag":107,"props":385,"children":386},{"style":130},[387],{"type":43,"value":388},"--disable-write",{"type":37,"tag":107,"props":390,"children":391},{"style":258},[392],{"type":43,"value":280},{"type":37,"tag":107,"props":394,"children":395},{"style":258},[396],{"type":43,"value":397},"],\n",{"type":37,"tag":107,"props":399,"children":400},{"class":109,"line":174},[401,405,410,414,418],{"type":37,"tag":107,"props":402,"children":403},{"style":258},[404],{"type":43,"value":322},{"type":37,"tag":107,"props":406,"children":407},{"style":325},[408],{"type":43,"value":409},"env",{"type":37,"tag":107,"props":411,"children":412},{"style":258},[413],{"type":43,"value":280},{"type":37,"tag":107,"props":415,"children":416},{"style":258},[417],{"type":43,"value":285},{"type":37,"tag":107,"props":419,"children":420},{"style":258},[421],{"type":43,"value":290},{"type":37,"tag":107,"props":423,"children":425},{"class":109,"line":424},7,[426,431,437,441,445,449,453,457],{"type":37,"tag":107,"props":427,"children":428},{"style":258},[429],{"type":43,"value":430},"        \"",{"type":37,"tag":107,"props":432,"children":434},{"style":433},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[435],{"type":43,"value":436},"GRAFANA_URL",{"type":37,"tag":107,"props":438,"children":439},{"style":258},[440],{"type":43,"value":280},{"type":37,"tag":107,"props":442,"children":443},{"style":258},[444],{"type":43,"value":285},{"type":37,"tag":107,"props":446,"children":447},{"style":258},[448],{"type":43,"value":341},{"type":37,"tag":107,"props":450,"children":451},{"style":130},[452],{"type":43,"value":218},{"type":37,"tag":107,"props":454,"children":455},{"style":258},[456],{"type":43,"value":280},{"type":37,"tag":107,"props":458,"children":459},{"style":258},[460],{"type":43,"value":354},{"type":37,"tag":107,"props":462,"children":464},{"class":109,"line":463},8,[465,469,474,478,482,486,491],{"type":37,"tag":107,"props":466,"children":467},{"style":258},[468],{"type":43,"value":430},{"type":37,"tag":107,"props":470,"children":471},{"style":433},[472],{"type":43,"value":473},"GRAFANA_API_KEY",{"type":37,"tag":107,"props":475,"children":476},{"style":258},[477],{"type":43,"value":280},{"type":37,"tag":107,"props":479,"children":480},{"style":258},[481],{"type":43,"value":285},{"type":37,"tag":107,"props":483,"children":484},{"style":258},[485],{"type":43,"value":341},{"type":37,"tag":107,"props":487,"children":488},{"style":130},[489],{"type":43,"value":490},"glsa_xxxx",{"type":37,"tag":107,"props":492,"children":493},{"style":258},[494],{"type":43,"value":495},"\"\n",{"type":37,"tag":107,"props":497,"children":499},{"class":109,"line":498},9,[500],{"type":37,"tag":107,"props":501,"children":502},{"style":258},[503],{"type":43,"value":504},"      }\n",{"type":37,"tag":107,"props":506,"children":508},{"class":109,"line":507},10,[509],{"type":37,"tag":107,"props":510,"children":511},{"style":258},[512],{"type":43,"value":513},"    }\n",{"type":37,"tag":107,"props":515,"children":517},{"class":109,"line":516},11,[518],{"type":37,"tag":107,"props":519,"children":520},{"style":258},[521],{"type":43,"value":522},"  }\n",{"type":37,"tag":107,"props":524,"children":526},{"class":109,"line":525},12,[527],{"type":37,"tag":107,"props":528,"children":529},{"style":258},[530],{"type":43,"value":531},"}\n",{"type":37,"tag":533,"props":534,"children":535},"br",{},[],{"type":37,"tag":57,"props":537,"children":539},{"className":538},[],[540],{"type":43,"value":388},{"type":43,"value":542}," is the safer default — drop it once you've verified the read path works.",{"type":37,"tag":186,"props":544,"children":545},{},[546,551,552,562,565,567,572,574,583,586,588],{"type":37,"tag":190,"props":547,"children":548},{},[549],{"type":43,"value":550},"Restart Claude Code, then verify",{"type":43,"value":285},{"type":37,"tag":96,"props":553,"children":557},{"className":554,"code":556,"language":43},[555],"language-text","\u002Fmcp\n",[558],{"type":37,"tag":57,"props":559,"children":560},{"__ignoreMap":101},[561],{"type":43,"value":556},{"type":37,"tag":533,"props":563,"children":564},{},[],{"type":43,"value":566},"The ",{"type":37,"tag":57,"props":568,"children":570},{"className":569},[],[571],{"type":43,"value":8},{"type":43,"value":573}," server should appear with its tool list. Then ask:",{"type":37,"tag":96,"props":575,"children":578},{"className":576,"code":577,"language":43},[555],"What data sources are configured in my Grafana instance?\n",[579],{"type":37,"tag":57,"props":580,"children":581},{"__ignoreMap":101},[582],{"type":43,"value":577},{"type":37,"tag":533,"props":584,"children":585},{},[],{"type":43,"value":587},"A clean response = working. If the tool call fails:",{"type":37,"tag":589,"props":590,"children":591},"ul",{},[592,604,609],{"type":37,"tag":186,"props":593,"children":594},{},[595,597,602],{"type":43,"value":596},"Check ",{"type":37,"tag":57,"props":598,"children":600},{"className":599},[],[601],{"type":43,"value":436},{"type":43,"value":603}," has no trailing slash",{"type":37,"tag":186,"props":605,"children":606},{},[607],{"type":43,"value":608},"Confirm the API key hasn't expired",{"type":37,"tag":186,"props":610,"children":611},{},[612,614,620],{"type":43,"value":613},"Re-run with ",{"type":37,"tag":57,"props":615,"children":617},{"className":616},[],[618],{"type":43,"value":619},"mcp-grafana --debug",{"type":43,"value":621}," to see raw request\u002Fresponse",{"type":37,"tag":89,"props":623,"children":625},{"id":624},"connecting-cursor",[626],{"type":43,"value":627},"Connecting Cursor",{"type":37,"tag":46,"props":629,"children":630},{},[631,633,639],{"type":43,"value":632},"Same Grafana token. Settings → Features → MCP Servers (or edit ",{"type":37,"tag":57,"props":634,"children":636},{"className":635},[],[637],{"type":43,"value":638},"~\u002F.cursor\u002Fmcp.json",{"type":43,"value":243},{"type":37,"tag":96,"props":641,"children":642},{"className":246,"code":247,"language":248,"meta":101,"style":101},[643],{"type":37,"tag":57,"props":644,"children":645},{"__ignoreMap":101},[646,653,676,699,734,773,796,831,862,869,876,883],{"type":37,"tag":107,"props":647,"children":648},{"class":109,"line":110},[649],{"type":37,"tag":107,"props":650,"children":651},{"style":258},[652],{"type":43,"value":261},{"type":37,"tag":107,"props":654,"children":655},{"class":109,"line":120},[656,660,664,668,672],{"type":37,"tag":107,"props":657,"children":658},{"style":258},[659],{"type":43,"value":269},{"type":37,"tag":107,"props":661,"children":662},{"style":272},[663],{"type":43,"value":275},{"type":37,"tag":107,"props":665,"children":666},{"style":258},[667],{"type":43,"value":280},{"type":37,"tag":107,"props":669,"children":670},{"style":258},[671],{"type":43,"value":285},{"type":37,"tag":107,"props":673,"children":674},{"style":258},[675],{"type":43,"value":290},{"type":37,"tag":107,"props":677,"children":678},{"class":109,"line":141},[679,683,687,691,695],{"type":37,"tag":107,"props":680,"children":681},{"style":258},[682],{"type":43,"value":298},{"type":37,"tag":107,"props":684,"children":685},{"style":124},[686],{"type":43,"value":8},{"type":37,"tag":107,"props":688,"children":689},{"style":258},[690],{"type":43,"value":280},{"type":37,"tag":107,"props":692,"children":693},{"style":258},[694],{"type":43,"value":285},{"type":37,"tag":107,"props":696,"children":697},{"style":258},[698],{"type":43,"value":290},{"type":37,"tag":107,"props":700,"children":701},{"class":109,"line":151},[702,706,710,714,718,722,726,730],{"type":37,"tag":107,"props":703,"children":704},{"style":258},[705],{"type":43,"value":322},{"type":37,"tag":107,"props":707,"children":708},{"style":325},[709],{"type":43,"value":328},{"type":37,"tag":107,"props":711,"children":712},{"style":258},[713],{"type":43,"value":280},{"type":37,"tag":107,"props":715,"children":716},{"style":258},[717],{"type":43,"value":285},{"type":37,"tag":107,"props":719,"children":720},{"style":258},[721],{"type":43,"value":341},{"type":37,"tag":107,"props":723,"children":724},{"style":130},[725],{"type":43,"value":166},{"type":37,"tag":107,"props":727,"children":728},{"style":258},[729],{"type":43,"value":280},{"type":37,"tag":107,"props":731,"children":732},{"style":258},[733],{"type":43,"value":354},{"type":37,"tag":107,"props":735,"children":736},{"class":109,"line":160},[737,741,745,749,753,757,761,765,769],{"type":37,"tag":107,"props":738,"children":739},{"style":258},[740],{"type":43,"value":322},{"type":37,"tag":107,"props":742,"children":743},{"style":325},[744],{"type":43,"value":366},{"type":37,"tag":107,"props":746,"children":747},{"style":258},[748],{"type":43,"value":280},{"type":37,"tag":107,"props":750,"children":751},{"style":258},[752],{"type":43,"value":285},{"type":37,"tag":107,"props":754,"children":755},{"style":258},[756],{"type":43,"value":379},{"type":37,"tag":107,"props":758,"children":759},{"style":258},[760],{"type":43,"value":280},{"type":37,"tag":107,"props":762,"children":763},{"style":130},[764],{"type":43,"value":388},{"type":37,"tag":107,"props":766,"children":767},{"style":258},[768],{"type":43,"value":280},{"type":37,"tag":107,"props":770,"children":771},{"style":258},[772],{"type":43,"value":397},{"type":37,"tag":107,"props":774,"children":775},{"class":109,"line":174},[776,780,784,788,792],{"type":37,"tag":107,"props":777,"children":778},{"style":258},[779],{"type":43,"value":322},{"type":37,"tag":107,"props":781,"children":782},{"style":325},[783],{"type":43,"value":409},{"type":37,"tag":107,"props":785,"children":786},{"style":258},[787],{"type":43,"value":280},{"type":37,"tag":107,"props":789,"children":790},{"style":258},[791],{"type":43,"value":285},{"type":37,"tag":107,"props":793,"children":794},{"style":258},[795],{"type":43,"value":290},{"type":37,"tag":107,"props":797,"children":798},{"class":109,"line":424},[799,803,807,811,815,819,823,827],{"type":37,"tag":107,"props":800,"children":801},{"style":258},[802],{"type":43,"value":430},{"type":37,"tag":107,"props":804,"children":805},{"style":433},[806],{"type":43,"value":436},{"type":37,"tag":107,"props":808,"children":809},{"style":258},[810],{"type":43,"value":280},{"type":37,"tag":107,"props":812,"children":813},{"style":258},[814],{"type":43,"value":285},{"type":37,"tag":107,"props":816,"children":817},{"style":258},[818],{"type":43,"value":341},{"type":37,"tag":107,"props":820,"children":821},{"style":130},[822],{"type":43,"value":218},{"type":37,"tag":107,"props":824,"children":825},{"style":258},[826],{"type":43,"value":280},{"type":37,"tag":107,"props":828,"children":829},{"style":258},[830],{"type":43,"value":354},{"type":37,"tag":107,"props":832,"children":833},{"class":109,"line":463},[834,838,842,846,850,854,858],{"type":37,"tag":107,"props":835,"children":836},{"style":258},[837],{"type":43,"value":430},{"type":37,"tag":107,"props":839,"children":840},{"style":433},[841],{"type":43,"value":473},{"type":37,"tag":107,"props":843,"children":844},{"style":258},[845],{"type":43,"value":280},{"type":37,"tag":107,"props":847,"children":848},{"style":258},[849],{"type":43,"value":285},{"type":37,"tag":107,"props":851,"children":852},{"style":258},[853],{"type":43,"value":341},{"type":37,"tag":107,"props":855,"children":856},{"style":130},[857],{"type":43,"value":490},{"type":37,"tag":107,"props":859,"children":860},{"style":258},[861],{"type":43,"value":495},{"type":37,"tag":107,"props":863,"children":864},{"class":109,"line":498},[865],{"type":37,"tag":107,"props":866,"children":867},{"style":258},[868],{"type":43,"value":504},{"type":37,"tag":107,"props":870,"children":871},{"class":109,"line":507},[872],{"type":37,"tag":107,"props":873,"children":874},{"style":258},[875],{"type":43,"value":513},{"type":37,"tag":107,"props":877,"children":878},{"class":109,"line":516},[879],{"type":37,"tag":107,"props":880,"children":881},{"style":258},[882],{"type":43,"value":522},{"type":37,"tag":107,"props":884,"children":885},{"class":109,"line":525},[886],{"type":37,"tag":107,"props":887,"children":888},{"style":258},[889],{"type":43,"value":531},{"type":37,"tag":46,"props":891,"children":892},{},[893],{"type":43,"value":894},"Verify the same way — Cursor surfaces MCP servers in its agent panel; run a query like \"list dashboards tagged kubernetes\".",{"type":37,"tag":89,"props":896,"children":898},{"id":897},"sharing-the-server-across-a-team-sse",[899],{"type":43,"value":900},"Sharing the server across a team (SSE)",{"type":37,"tag":46,"props":902,"children":903},{},[904,906,911,913,918,920,924],{"type":43,"value":905},"Switch from ",{"type":37,"tag":57,"props":907,"children":909},{"className":908},[],[910],{"type":43,"value":62},{"type":43,"value":912}," to ",{"type":37,"tag":57,"props":914,"children":916},{"className":915},[],[917],{"type":43,"value":70},{"type":43,"value":919}," so the server runs once and many agents connect to it. Full setup with VS Code config in ",{"type":37,"tag":74,"props":921,"children":922},{"href":76},[923],{"type":43,"value":76},{"type":43,"value":925},".",{"type":37,"tag":82,"props":927,"children":929},{"id":928},"security-considerations",[930],{"type":43,"value":931},"Security considerations",{"type":37,"tag":589,"props":933,"children":934},{},[935,940,952,971],{"type":37,"tag":186,"props":936,"children":937},{},[938],{"type":43,"value":939},"API keys belong in env vars or a secrets manager — never in committed files.",{"type":37,"tag":186,"props":941,"children":942},{},[943,945,950],{"type":43,"value":944},"Use ",{"type":37,"tag":57,"props":946,"children":948},{"className":947},[],[949],{"type":43,"value":388},{"type":43,"value":951}," for shared environments and CI; only lift it on the specific machine where the agent should be allowed to mutate Grafana.",{"type":37,"tag":186,"props":953,"children":954},{},[955,957,962,964,969],{"type":43,"value":956},"Scope service-account permissions to the minimum: ",{"type":37,"tag":57,"props":958,"children":960},{"className":959},[],[961],{"type":43,"value":202},{"type":43,"value":963}," is enough for queries and dashboard reads. Only grant ",{"type":37,"tag":57,"props":965,"children":967},{"className":966},[],[968],{"type":43,"value":210},{"type":43,"value":970}," when the agent needs to create dashboards or annotations.",{"type":37,"tag":186,"props":972,"children":973},{},[974],{"type":43,"value":975},"Rotate tokens periodically via Administration → Service Accounts.",{"type":37,"tag":82,"props":977,"children":979},{"id":978},"references",[980],{"type":43,"value":981},"References",{"type":37,"tag":589,"props":983,"children":984},{},[985,999,1012],{"type":37,"tag":186,"props":986,"children":987},{},[988,997],{"type":37,"tag":74,"props":989,"children":991},{"href":990},"references\u002Ftools.md",[992],{"type":37,"tag":57,"props":993,"children":995},{"className":994},[],[996],{"type":43,"value":990},{"type":43,"value":998}," — full list of MCP tools exposed (query \u002F dashboard \u002F alerting \u002F Fleet Management \u002F annotations) and how to discover the live set",{"type":37,"tag":186,"props":1000,"children":1001},{},[1002,1010],{"type":37,"tag":74,"props":1003,"children":1004},{"href":76},[1005],{"type":37,"tag":57,"props":1006,"children":1008},{"className":1007},[],[1009],{"type":43,"value":76},{"type":43,"value":1011}," — SSE setup for team sharing and VS Code, with stdio-vs-SSE decision matrix + common failure modes",{"type":37,"tag":186,"props":1013,"children":1014},{},[1015,1024],{"type":37,"tag":74,"props":1016,"children":1018},{"href":1017},"references\u002Fa2a.md",[1019],{"type":37,"tag":57,"props":1020,"children":1022},{"className":1021},[],[1023],{"type":43,"value":1017},{"type":43,"value":1025}," — Agent-to-Agent (A2A) protocol for delegating reasoning to the Grafana Assistant (vs direct tool calls via MCP)",{"type":37,"tag":82,"props":1027,"children":1029},{"id":1028},"external-resources",[1030],{"type":43,"value":1031},"External resources",{"type":37,"tag":589,"props":1033,"children":1034},{},[1035,1046,1056,1066],{"type":37,"tag":186,"props":1036,"children":1037},{},[1038],{"type":37,"tag":74,"props":1039,"children":1043},{"href":1040,"rel":1041},"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fmcp-grafana",[1042],"nofollow",[1044],{"type":43,"value":1045},"Grafana MCP server (github.com\u002Fgrafana\u002Fmcp-grafana)",{"type":37,"tag":186,"props":1047,"children":1048},{},[1049],{"type":37,"tag":74,"props":1050,"children":1053},{"href":1051,"rel":1052},"https:\u002F\u002Fspec.modelcontextprotocol.io\u002F",[1042],[1054],{"type":43,"value":1055},"Model Context Protocol specification",{"type":37,"tag":186,"props":1057,"children":1058},{},[1059],{"type":37,"tag":74,"props":1060,"children":1063},{"href":1061,"rel":1062},"https:\u002F\u002Fgrafana.com\u002Fdocs\u002Fgrafana-cloud\u002Fdeveloper-resources\u002Fapi-reference\u002F",[1042],[1064],{"type":43,"value":1065},"Grafana Cloud API documentation",{"type":37,"tag":186,"props":1067,"children":1068},{},[1069],{"type":37,"tag":74,"props":1070,"children":1073},{"href":1071,"rel":1072},"https:\u002F\u002Fgrafana.com\u002Fdocs\u002Fgrafana-cloud\u002Fmachine-learning\u002Fassistant\u002F",[1042],[1074],{"type":43,"value":1075},"Grafana Assistant documentation",{"type":37,"tag":1077,"props":1078,"children":1079},"style",{},[1080],{"type":43,"value":1081},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1083,"total":1272},[1084,1105,1124,1143,1156,1172,1185,1200,1217,1232,1245,1260],{"slug":1085,"name":1085,"fn":1086,"description":1087,"org":1088,"tags":1089,"stars":1102,"repoUrl":1103,"updatedAt":1104},"faro-setup-web","instrument web apps with Grafana Faro","Instruments a web app with Grafana Faro Web SDK for frontend observability. Use when setting up error tracking, Web Vitals, session monitoring, or distributed tracing in a browser app.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1090,1093,1096,1099],{"name":1091,"slug":1092,"type":15},"Distributed Tracing","distributed-tracing",{"name":1094,"slug":1095,"type":15},"Frontend","frontend",{"name":1097,"slug":1098,"type":15},"Monitoring","monitoring",{"name":1100,"slug":1101,"type":15},"Observability","observability",1103,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Ffaro-web-sdk","2026-07-12T07:43:24.63314",{"slug":1106,"name":1106,"fn":1107,"description":1108,"org":1109,"tags":1110,"stars":1121,"repoUrl":1122,"updatedAt":1123},"configuring-yesoreyeram-infinity-datasource","configure Grafana Infinity data source","Configure the Infinity data source — base URL and allowed hosts, the authentication methods (basic, bearer token, API key, digest, OAuth passthrough, OAuth 2.0 client credentials\u002FJWT, Azure, Azure Blob, AWS), TLS, custom HTTP headers, network and security settings, the custom health check, and provisioning with a config file. Use when a user asks how to set up, configure, or change settings for the Infinity data source; how to authenticate to an API; how to allow hosts; how to provision it as YAML; or how to troubleshoot connection, authentication, or health-check issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1111,1114,1117,1120],{"name":1112,"slug":1113,"type":15},"API Development","api-development",{"name":1115,"slug":1116,"type":15},"Authentication","authentication",{"name":1118,"slug":1119,"type":15},"Configuration","configuration",{"name":9,"slug":8,"type":15},1056,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fgrafana-infinity-datasource","2026-07-12T07:43:25.939136",{"slug":1125,"name":1125,"fn":1126,"description":1127,"org":1128,"tags":1129,"stars":1121,"repoUrl":1122,"updatedAt":1142},"querying-yesoreyeram-infinity-datasource","query data with Infinity datasource","Build queries with the Infinity data source — the query types (JSON, CSV, TSV, XML, GraphQL, HTML, UQL, GROQ, Google Sheets, Series, Transformations), the parsers (Frontend\u002Fsimple, Backend JSONata, JQ, UQL, GROQ) and which support alerting, the sources (URL, Inline, Reference, Azure Blob, Random walk), output formats (table, timeseries, logs, trace, node graph, dataframe), root selector and columns, computed columns\u002Ffilters\u002Fsummarize, pagination, and template variables. Use when a user asks how to query Infinity; how to fetch JSON\u002FCSV\u002FXML\u002FGraphQL\u002FHTML from a URL or inline; how to select rows and columns; how to transform data with UQL\u002FGROQ\u002FJSONata\u002FJQ; how to make a query work with alerting; how to paginate; or how to use variables in a query.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1130,1133,1136,1137,1140],{"name":1131,"slug":1132,"type":15},"CSV","csv",{"name":1134,"slug":1135,"type":15},"Data Analysis","data-analysis",{"name":9,"slug":8,"type":15},{"name":1138,"slug":1139,"type":15},"GraphQL","graphql",{"name":1141,"slug":248,"type":15},"JSON","2026-07-15T05:34:05.773947",{"slug":1144,"name":1144,"fn":1145,"description":1146,"org":1147,"tags":1148,"stars":1153,"repoUrl":1154,"updatedAt":1155},"agento11y","manage Grafana Agent Observability resources","Inspects and manages Grafana Agent Observability resources via gcx: conversations, generations, evaluators, rules, scores, and templates. Use when the user wants to list or search conversations, inspect generations, manage evaluators (upsert, test, delete), set up evaluation rules, check scores, or browse evaluator templates. Trigger on phrases like \"list conversations\", \"search generations\", \"what did the agent do\", \"debug LLM conversation\", \"create evaluator\", \"set up evaluation rule\", \"test evaluator\", \"check scores\", \"evaluate generation quality\", or \"set up online evaluation\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1149,1150,1151,1152],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":1097,"slug":1098,"type":15},{"name":1100,"slug":1101,"type":15},430,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fgcx","2026-07-25T05:30:40.29622",{"slug":1157,"name":1157,"fn":1158,"description":1159,"org":1160,"tags":1161,"stars":1153,"repoUrl":1154,"updatedAt":1171},"agento11y-instrument","instrument LLM apps for agent observability","Sets up and instruments a developer's own LLM app or agent to send generations and agentic workflow to Grafana Agent Observability (the Agent Observability SDKs) — greenfield setup, fixing broken instrumentation, or filling gaps in existing instrumentation. Uses gcx for the parts a static prompt can't do: `gcx login` \u002F `gcx cloud stacks` to find the stack, and `gcx agento11y agents|conversations|generations` to VERIFY that data actually lands — so it iterates (instrument → run → verify → fix) until generations arrive, not blindly. Reads the app's code, detects language\u002Fframework, classifies instrumentation state (none \u002F partial \u002F broken), then runs a fixed gap checklist whose #1 item is the silent failure no other prompt catches: the SDK emits OTel spans\u002Fmetrics but never creates a TracerProvider\u002FMeterProvider, so without them all metrics go to a no-op and are lost. Also checks agent_version (required for per-version Performance charts), set_result completeness, SYNC vs STREAM, parent_generation_ids DAG links, and workflow-step coverage. Recommends changes citing file:line and, only with explicit confirmation, applies minimal diffs that don't change app behavior. Pulls SDK reference from agento11y's llms.txt rather than restating it, and hands off to `agento11y-test-starter` once data flows. It does NOT write test suites or set up tenant evaluations, rules, or guards — offline test suites are `agento11y-test-starter`, tenant eval rules + guards are `agento11y-prod-setup`; does NOT install coding-agent telemetry plugins (that is llms.txt \"Path A\"); does NOT mint or store credentials or invent endpoints. Trigger on phrases like \"instrument my app\", \"send my agent's traces to Grafana\", \"set up AI observability for my app\", \"my generations aren't showing up\", \"why is Performance empty\", \"add Agent Observability to my code\", \"fix my instrumentation\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1162,1163,1164,1167,1170],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":1165,"slug":1166,"type":15},"Instrumentation","instrumentation",{"name":1168,"slug":1169,"type":15},"LLM","llm",{"name":1100,"slug":1101,"type":15},"2026-07-31T05:53:52.580237",{"slug":1173,"name":1173,"fn":1174,"description":1175,"org":1176,"tags":1177,"stars":1153,"repoUrl":1154,"updatedAt":1184},"agento11y-prod-setup","setup production evaluation for AI agents","Sets up production evaluation and guardrails for a DEPLOYED AI agent in Grafana Agent Observability, grounded in the agent's own code and its real ingested traffic. The judgment layer on top of the `agento11y` skill: it reads the agent's source (system prompt, tools, entrypoint) AND samples its live traffic via gcx, checks what evaluators\u002Frules\u002Fguards already exist, then recommends only what's missing — online eval rules (score live conversations for regressions) and guards (warn-first request-path policies that redact \u002F tool-filter and may later be promoted to deny). It drafts reviewable YAML and, only with explicit confirmation, applies via `gcx agento11y`. New guards are drafted in warn mode (safe on live traffic — warn records but never blocks). It DOES create stack-level objects — that is the point — but every write is confirmed. It never rewrites or redeploys the agent. Trigger on phrases like \"set up production evaluation\", \"my agent is in prod what should I evaluate\", \"catch quality regressions\", \"add guardrails to my agent\", \"redact PII from my agent\", \"block dangerous tools\", \"set up online evals and guards\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1178,1179,1182,1183],{"name":17,"slug":18,"type":15},{"name":1180,"slug":1181,"type":15},"Evals","evals",{"name":9,"slug":8,"type":15},{"name":1100,"slug":1101,"type":15},"2026-07-31T05:53:53.576347",{"slug":1186,"name":1186,"fn":1187,"description":1188,"org":1189,"tags":1190,"stars":1153,"repoUrl":1154,"updatedAt":1199},"agento11y-test-starter","build and run agent test suites","Use early in an AI-agent project — before ship, before real traffic — to build a starter test suite for the agent and run it offline. Reads the agent's own code (system prompt, tools, task), writes a labeled draft suite of test cases (happy\u002Fedge\u002Fadversarial) grounded in real lines, and recommends how to score each case (the evaluators\u002Fjudges the offline runner uses). Assesses how runnable the agent is: for an easily-invoked agent it generates a runner stub (run_experiment.py) with two holes to fill and can optionally run it (only with permission, only against the endpoint the developer configured); for agents needing a harness or full runtime it points to the existing eval infra. It runs OFFLINE and never creates tenant-level evaluators, rules, or guards — that is `agento11y-prod-setup`, for a deployed agent with real traffic. Trigger on phrases like \"how do I test my agent before shipping\", \"write test cases for my agent\", \"set up tests for my agent\", \"check my agent before prod\", \"I have no traffic yet, how do I evaluate it\", \"test my agent offline\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1191,1192,1193,1196],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":1194,"slug":1195,"type":15},"QA","qa",{"name":1197,"slug":1198,"type":15},"Testing","testing","2026-07-31T05:53:51.62785",{"slug":1201,"name":1201,"fn":1202,"description":1203,"org":1204,"tags":1205,"stars":1153,"repoUrl":1154,"updatedAt":1216},"create-dashboard","create Grafana dashboards with gcx","Designs and creates Grafana dashboards with gcx, using `gcx dashboards snapshot` as a visual feedback loop. Use when the user wants to create a new Grafana dashboard, add panels, variables, or annotations to an existing dashboard, design dashboard panels, variables, queries, or layout, or make a material visual redesign. Triggers on \"create dashboard\", \"new dashboard\", \"build dashboard\", \"dashboard for \u003Cservice>\", \"add panels\", \"add variable\", \"add annotation\", \"improve this dashboard\", or \"iterate on a dashboard\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1206,1209,1212,1215],{"name":1207,"slug":1208,"type":15},"Dashboards","dashboards",{"name":1210,"slug":1211,"type":15},"Data Visualization","data-visualization",{"name":1213,"slug":1214,"type":15},"Design","design",{"name":9,"slug":8,"type":15},"2026-07-25T05:30:46.289717",{"slug":1218,"name":1218,"fn":1219,"description":1220,"org":1221,"tags":1222,"stars":1153,"repoUrl":1154,"updatedAt":1231},"debug-with-grafana","investigate application issues with Grafana","Structured workflow for investigating application problems with Grafana observability data (metrics, logs, traces) via gcx. Covers live firefighting AND retrospective incident analysis: incident triage, root-cause analysis, blast-radius checks (did an incident spill into other services), verifying whether a deployment or rollout triggered an incident, finding which service, endpoint, or path owns the most errors or slow requests, checking whether retries or queue backlogs piled up, and quantifying error or latency shares over a time window. Trigger on: \"my API is returning 500 errors\", \"latency is spiking\", \"investigate why requests are failing\", \"triage the incident\", \"blast radius\", \"root cause\", \"did the rollout cause it\", \"which endpoint owns the most 5xx\", \"did retries pile up\", or any request to analyse an earlier incident window using telemetry. For authoring dashboards use create-dashboard; for dashboard inventory use manage-dashboards.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1223,1226,1227,1230],{"name":1224,"slug":1225,"type":15},"Debugging","debugging",{"name":9,"slug":8,"type":15},{"name":1228,"slug":1229,"type":15},"Incident Response","incident-response",{"name":1100,"slug":1101,"type":15},"2026-07-18T05:11:10.445428",{"slug":1233,"name":1233,"fn":1234,"description":1235,"org":1236,"tags":1237,"stars":1153,"repoUrl":1154,"updatedAt":1244},"diagnose-entity-graph","diagnose Grafana Entity Graph issues","Diagnose Entity Graph problems: missing entities, missing edges, disconnected clusters, or filtering issues. Use when the user reports that Entity Graph doesn't look right, services are missing, edges aren't appearing, or environments can't be filtered. Triggers for: \"entity graph is empty\", \"services missing from entity graph\", \"no edges in entity graph\", \"disconnected services\", \"can't filter entity graph\", \"entity graph not working\", \"diagnose entity graph\", \"debug knowledge graph\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1238,1239,1240,1243],{"name":1224,"slug":1225,"type":15},{"name":9,"slug":8,"type":15},{"name":1241,"slug":1242,"type":15},"Graph Analysis","graph-analysis",{"name":1100,"slug":1101,"type":15},"2026-07-25T05:30:39.380934",{"slug":1246,"name":1246,"fn":1247,"description":1248,"org":1249,"tags":1250,"stars":1153,"repoUrl":1154,"updatedAt":1259},"gcx","manage Grafana Cloud resources via gcx","Manages Grafana Cloud resources via the gcx CLI. Trigger when the user wants to inspect, create, update, delete, query, or automate any Grafana resource - dashboards, datasources, alerts, SLOs, synthetic checks, oncall, incidents, fleet, k6, knowledge graph, or adaptive telemetry.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1251,1254,1255,1256],{"name":1252,"slug":1253,"type":15},"CLI","cli",{"name":9,"slug":8,"type":15},{"name":1097,"slug":1098,"type":15},{"name":1257,"slug":1258,"type":15},"Operations","operations","2026-07-31T05:53:50.587304",{"slug":1261,"name":1261,"fn":1262,"description":1263,"org":1264,"tags":1265,"stars":1153,"repoUrl":1154,"updatedAt":1271},"gcx-demo","present gcx demo tours","Run a narrated, read-only demo tour of gcx for customer or colleague presentations. Showcases the breadth of gcx across every Grafana Cloud product area — resources, datasources, metrics, logs, traces, SLOs, alerts, synthetic monitoring, IRM, k6, fleet, and more. All commands are strictly read-only. Trigger when the user says \"demo gcx\", \"show off gcx\", \"customer demo\", \"gcx tour\", or \"\u002Fgcx-demo\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1266,1267,1268],{"name":1252,"slug":1253,"type":15},{"name":9,"slug":8,"type":15},{"name":1269,"slug":1270,"type":15},"Presentations","presentations","2026-07-25T05:30:45.282458",80,{"items":1274,"total":1379},[1275,1290,1305,1321,1334,1350,1364],{"slug":1276,"name":1276,"fn":1277,"description":1278,"org":1279,"tags":1280,"stars":20,"repoUrl":21,"updatedAt":1289},"adaptive-metrics","optimize Grafana Cloud metrics costs","Cut Grafana Cloud Metrics cost by shrinking active-series count with Adaptive Metrics aggregation rules — auto-recommendations from query history, custom exact\u002Fregex rules, label-drop config, unused-metric detection, and Alloy remote_write fallback. Use when investigating a high Mimir\u002FGrafana Cloud bill, hunting high-cardinality labels (`pod_uid`, `service_instance_id`, `version`), pre-aggregating counters\u002Fgauges, dropping unused metrics, or measuring `grafanacloud_instance_active_series` before\u002Fafter — even when the user says \"reduce cardinality\", \"too many series\", \"metrics spend\", \"active series count is exploding\", or \"drop the version label\" without naming Adaptive Metrics.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1281,1284,1285,1288],{"name":1282,"slug":1283,"type":15},"Cost Optimization","cost-optimization",{"name":9,"slug":8,"type":15},{"name":1286,"slug":1287,"type":15},"Metrics","metrics",{"name":1100,"slug":1101,"type":15},"2026-07-12T07:44:27.451068",{"slug":1291,"name":1291,"fn":1292,"description":1293,"org":1294,"tags":1295,"stars":20,"repoUrl":21,"updatedAt":1304},"admin","manage Grafana Cloud accounts and RBAC","Manage Grafana Cloud accounts — organizations, stacks, RBAC roles and assignments, SSO\u002FSAML\u002FOAuth\u002FGitHub auth, service accounts for CI\u002FCD, user invites, team membership, and API-driven provisioning. Creates stacks via the Cloud API, mints service-account tokens, applies role assignments, configures SSO providers, and provisions teams\u002Ffolders\u002Fdashboards via Terraform. Use when managing Grafana Cloud access, configuring SSO\u002FSAML\u002FOAuth, setting up service accounts for Terraform\u002FCI\u002FCD, assigning RBAC roles, inviting users, managing multiple stacks or organizations, provisioning cloud resources via API or Terraform, or auditing admin actions — even when the user says \"set up SSO\", \"create a stack\", \"make a service account\", or \"onboard a team\" without explicitly saying \"admin\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1296,1299,1302,1303],{"name":1297,"slug":1298,"type":15},"Access Control","access-control",{"name":1300,"slug":1301,"type":15},"Auth","auth",{"name":9,"slug":8,"type":15},{"name":1257,"slug":1258,"type":15},"2026-07-12T07:44:12.078436",{"slug":1306,"name":1306,"fn":1307,"description":1308,"org":1309,"tags":1310,"stars":20,"repoUrl":21,"updatedAt":1320},"admission-control","implement admission control webhooks","Use when the user asks to \"write a validator\", \"add validation\", \"implement admission control\", \"write a mutating webhook\", \"add a mutation handler\", \"validate incoming resources\", \"implement admission logic\", \"add admission webhooks\", \"write ingress validation\", or asks how to validate or mutate resources before they are persisted in a grafana-app-sdk app. Provides guidance on implementing validation and mutation admission handlers for grafana-app-sdk apps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1311,1314,1317],{"name":1312,"slug":1313,"type":15},"Architecture","architecture",{"name":1315,"slug":1316,"type":15},"Security","security",{"name":1318,"slug":1319,"type":15},"Validation","validation","2026-07-12T07:45:06.148973",{"slug":1322,"name":1322,"fn":1323,"description":1324,"org":1325,"tags":1326,"stars":20,"repoUrl":21,"updatedAt":1333},"alerting-irm","configure Grafana Alerting and Incident Management","Configure Grafana Alerting, Incident Response Management (IRM), and SLOs end-to-end — provisions Grafana-managed and data-source-managed alert rules, contact points (Slack\u002FPagerDuty\u002Femail\u002Fwebhook), notification policies with hierarchical matchers, silences, mute timings, on-call schedules and escalation chains, incident-management integrations, and SLOs with multi-window burn-rate alerts. Use when configuring alerts, debugging notification routing, setting up on-call rotations, declaring or managing incidents, defining SLOs, provisioning alerting via YAML or API, picking matchers for a notification policy, building a PagerDuty\u002FSlack webhook receiver, or troubleshooting why an alert isn't firing — even when the user says \"page me on errors\", \"alert me when X happens\", \"route this to the platform team\", or \"set up an SLO\" without naming Alerting or IRM.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1327,1330,1331,1332],{"name":1328,"slug":1329,"type":15},"Alerting","alerting",{"name":9,"slug":8,"type":15},{"name":1228,"slug":1229,"type":15},{"name":1097,"slug":1098,"type":15},"2026-07-12T07:44:02.393397",{"slug":1335,"name":1335,"fn":1336,"description":1337,"org":1338,"tags":1339,"stars":20,"repoUrl":21,"updatedAt":1349},"alloy","build unified telemetry pipelines with Grafana Alloy","Build a unified telemetry pipeline with Grafana Alloy — one OpenTelemetry-compatible binary that collects metrics, logs, traces, and profiles and ships to Grafana Cloud \u002F Prometheus \u002F Loki \u002F Tempo \u002F Pyroscope. Covers the Alloy config language (blocks, `sys.env`, component refs), `prometheus.scrape` → `remote_write`, `loki.source.file` + `loki.process` → `loki.write`, `otelcol.receiver.otlp` → `otelcol.exporter.otlp`, `pyroscope.scrape`, K8s \u002F Docker \u002F EC2 discovery, relabeling, modules (`import.file\u002Fgit\u002Fhttp`), clustering, Fleet Management `remotecfg`, the Alloy UI at `:12345`, and `alloy fmt` \u002F `alloy validate`. Use when writing a `config.alloy`, replacing Grafana Agent \u002F OTel Collector, scraping K8s pods, parsing logs, ingesting OTLP, or debugging \"Alloy isn't sending anything\" — even when the user says \"set up the agent\", \"write me a scrape config\", \"drop these logs before sending\", or \"OTel collector config\" without naming Alloy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1340,1341,1344,1345,1346],{"name":9,"slug":8,"type":15},{"name":1342,"slug":1343,"type":15},"Logs","logs",{"name":1286,"slug":1287,"type":15},{"name":1100,"slug":1101,"type":15},{"name":1347,"slug":1348,"type":15},"OpenTelemetry","opentelemetry","2026-07-12T07:43:54.817139",{"slug":1351,"name":1351,"fn":1352,"description":1353,"org":1354,"tags":1355,"stars":20,"repoUrl":21,"updatedAt":1363},"app-observability","monitor application performance in Grafana Cloud","Get RED metrics + service maps + frontend RUM + AI\u002FLLM monitoring out of Grafana Cloud — Application Observability (`traces_spanmetrics_*` from OTel traces, p50\u002Fp95\u002Fp99 latency, exemplar-to-trace, traces-to-logs \u002F profiles), Frontend Observability with the Faro Web SDK (Core Web Vitals, session replay, `pushError`, React + router integration, `TracingInstrumentation` for browser → backend trace correlation), and AI Observability via OpenLIT (token \u002F cost \u002F latency, GPU, hallucination + toxicity evals). Use when standing up APM for a service, wiring an Alloy OTLP receiver + forwarding to Cloud, instrumenting a React frontend for RUM, debugging why service-map edges are missing, monitoring LLM cost drift, or correlating a frontend error to its backend trace — even when the user says \"set up APM\", \"show service map\", \"monitor browser perf\", \"session replay\", \"RUM SDK\", or \"watch our OpenAI bill\" without naming App \u002F Frontend \u002F AI Observability.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1356,1359,1360,1361,1362],{"name":1357,"slug":1358,"type":15},"APM","apm",{"name":1091,"slug":1092,"type":15},{"name":9,"slug":8,"type":15},{"name":1168,"slug":1169,"type":15},{"name":1100,"slug":1101,"type":15},"2026-07-12T07:44:34.500406",{"slug":1365,"name":1365,"fn":1366,"description":1367,"org":1368,"tags":1369,"stars":20,"repoUrl":21,"updatedAt":1378},"app-sdk-concepts","scaffold and configure Grafana apps","Use when starting any grafana-app-sdk work — scaffolding a Grafana app, initializing a Grafana App Platform app, picking a deployment mode (standalone operator \u002F grafana\u002Fapps \u002F frontend-only), wiring app-specific config, or onboarding to the SDK. Covers `grafana-app-sdk` CLI install, `project init` per deployment mode, project layout, the schema-centric workflow (CUE kinds → generated code → reconciler\u002Fadmission logic), and `SpecificConfig` for env-driven app configuration. Use even if the user just says \"make a new app\", \"Grafana app platform\", \"kinds and watchers\", \"operator scaffold\", or asks about `apps\u002F` inside the Grafana repo, without naming the SDK explicitly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1370,1371,1374,1377],{"name":1312,"slug":1313,"type":15},{"name":1372,"slug":1373,"type":15},"Deployment","deployment",{"name":1375,"slug":1376,"type":15},"Engineering","engineering",{"name":9,"slug":8,"type":15},"2026-07-12T07:45:08.595757",48]