This is documentation for the next version of Grafana documentation. For the latest stable release, go to the latest version.

Enterprise Open source

Deploy with Helm

Deploy the Grafana MCP server on Kubernetes using the Helm chart from the Grafana helm-charts repository.

What you’ll achieve

The server runs in your cluster and can be used by MCP clients that connect to it (for example, via SSE or streamable-http and an Ingress or LoadBalancer).

Before you begin

  • kubectl and Helm installed.
  • A Grafana URL and API key (or service account token) for the server to use.

Install the chart

Add the Grafana Helm repo and install the chart. Set grafana.url and grafana.apiKey (or the equivalent for your chart version) to your Grafana instance and token.

Bash
helm repo add grafana-community https://grafana-community.github.io/helm-charts
helm install --set grafana.apiKey=<Grafana_ApiKey> --set grafana.url=<GrafanaUrl> my-release grafana-community/grafana-mcp

For full chart options and defaults, refer to the grafana-mcp chart in the grafana-community helm-charts repository.

Next steps