Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Grafana
activity

Grafana MCP Server

Official Grafana MCP server for observability

grafanamonitoringdashboardsprometheusloki

About

## Grafana MCP Server: Visualization Platform The **Grafana MCP Server** integrates Grafana's visualization platform into Google Antigravity. This enables creating dashboards, querying data sources, and setting up alerts for metrics from any source. ### Why Grafana MCP? Grafana leads in visualization: - **Multi-Source**: 150+ data sources - **Beautiful Dashboards**: Rich visualizations - **Alerting**: Unified alert management - **Open Source**: Self-host or cloud - **Extensible**: Plugin ecosystem ### Key Features #### 1. Query Data ```python import requests headers = {"Authorization": f"Bearer {api_key}"} # Query Prometheus via Grafana response = requests.post( "https://grafana.example.com/api/ds/query", headers=headers, json={ "queries": [{ "refId": "A", "datasource": {"type": "prometheus"}, "expr": "rate(http_requests_total[5m])" }], "from": "now-1h", "to": "now" } ) ``` #### 2. Create Dashboard ```python dashboard = { "dashboard": { "title": "API Metrics", "panels": [{ "type": "graph", "title": "Requests per Second", "targets": [{ "expr": "rate(http_requests_total[5m])" }] }] }, "overwrite": True } response = requests.post( "https://grafana.example.com/api/dashboards/db", headers=headers, json=dashboard ) ``` #### 3. Manage Alerts ```python alert_rule = { "name": "High Error Rate", "condition": "gt", "threshold": 0.05, "for": "5m", "annotations": {"summary": "Error rate exceeds 5%"} } response = requests.post( "https://grafana.example.com/api/v1/provisioning/alert-rules", headers=headers, json=alert_rule ) ``` ### Configuration ```json { "mcpServers": { "grafana": { "command": "npx", "args": ["-y", "@anthropic/mcp-grafana"], "env": { "GRAFANA_URL": "https://grafana.example.com", "GRAFANA_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Custom Dashboards**: Build metric visualizations. **Multi-Source Analytics**: Combine data from many sources. **Alert Management**: Unified alerting across systems. The Grafana MCP Server brings powerful visualization to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "grafana": {
      "mcpServers": {
        "grafana": {
          "env": {
            "GRAFANA_URL": "http://localhost:3000",
            "GRAFANA_API_KEY": "YOUR_GRAFANA_API_KEY"
          },
          "args": [
            "-y",
            "@leval/mcp-grafana"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Set GRAFANA_URL to your Grafana instance
  2. 22. Create API key in Grafana and set GRAFANA_API_KEY
  3. 33. Use --disable-write for read-only mode

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers