mcp-grafana-npx
v1.0.1
Published
Grafana MCP server wrapper for running via npx
Readme
Grafana MCP Server (npx wrapper)
This is a Node.js wrapper for the Grafana MCP server, allowing you to run it via npx without needing to install Docker or download binaries manually.
Usage via npx
This is the easiest way to integrate the Grafana MCP server with AI IDEs like Cursor or Windsurf.
npx mcp-grafana-npx@latestIDE Integration (Cursor / Windsurf)
To integrate this MCP server into Cursor or Windsurf, add the following configuration to your MCP settings (e.g. .codeium/windsurf/mcp_config.json or Cursor's MCP panel):
{
"mcpServers": {
"grafana": {
"command": "npx",
"args": [
"-y",
"mcp-grafana-npx@latest"
],
"env": {
"GRAFANA_URL": "https://your-grafana-instance.grafana.net/",
"GRAFANA_SERVICE_ACCOUNT_TOKEN": "glsa_your_token_here"
}
}
}
}The wrapper will automatically detect your OS and architecture, download the correct binary from the GitHub releases, and execute it over stdio which is required for the IDEs.
