-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathserver.json
More file actions
53 lines (53 loc) · 1.69 KB
/
Copy pathserver.json
File metadata and controls
53 lines (53 loc) · 1.69 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.skyhook-io/radar",
"title": "Radar",
"description": "Kubernetes visibility for AI agents: query workloads, events, logs, topology, and Helm releases.",
"repository": {
"url": "https://github.com/skyhook-io/radar",
"source": "github"
},
"websiteUrl": "https://radarhq.io",
"version": "1.8.6",
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/skyhook-io/radar:1.8.6",
"runtimeHint": "docker",
"runtimeArguments": [
{
"type": "named",
"name": "-p",
"value": "127.0.0.1:9280:9280",
"isRequired": true,
"description": "Expose Radar's HTTP server (UI + MCP) on 127.0.0.1:9280 only"
},
{
"type": "named",
"name": "-v",
"value": "{kubeconfig_path}:/kubeconfig:ro",
"isRequired": true,
"description": "Mount your kubeconfig into the container (read-only)",
"variables": {
"kubeconfig_path": {
"description": "Absolute path to your kubeconfig file on the host, e.g. /home/you/.kube/config (a leading ~ is not expanded when the client execs docker directly)",
"format": "filepath",
"isRequired": true
}
}
},
{
"type": "named",
"name": "-e",
"value": "KUBECONFIG=/kubeconfig",
"isRequired": true,
"description": "Point Radar at the mounted kubeconfig"
}
],
"transport": {
"type": "streamable-http",
"url": "http://127.0.0.1:9280/mcp"
}
}
]
}