forked from grafana/mcp-grafana
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
64 lines (64 loc) · 2.01 KB
/
server.json
File metadata and controls
64 lines (64 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.grafana/mcp-grafana",
"description": "An MCP server giving access to Grafana dashboards, data and more.",
"repository": {
"url": "https://github.com/grafana/mcp-grafana",
"source": "github"
},
"version": "$VERSION",
"icon": "assets/icon.png",
"packages": [
{
"registryType": "oci",
"identifier": "docker.io/grafana/mcp-grafana:$VERSION",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "URL to your Grafana instance",
"isRequired": true,
"format": "string",
"isSecret": false,
"name": "GRAFANA_URL"
},
{
"description": "Service account token used to authenticate with your Grafana instance",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "GRAFANA_SERVICE_ACCOUNT_TOKEN"
},
{
"description": "Username to authenticate with your Grafana instance",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "GRAFANA_USERNAME"
},
{
"description": "Password to authenticate with your Grafana instance",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "GRAFANA_PASSWORD"
},
{
"description": "Organization ID for multi-org support. Can also be set via X-Grafana-Org-Id header in SSE/streamable HTTP transports.",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "GRAFANA_ORG_ID"
},
{
"description": "JSON object of additional HTTP headers to send with all Grafana API requests",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "GRAFANA_EXTRA_HEADERS"
}
]
}
]
}