kubectl-mcp-server 1.10.0 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +60 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,10 +6,10 @@ A Model Context Protocol (MCP) server for Kubernetes that enables AI assistants
|
|
|
6
6
|
[](https://www.python.org/)
|
|
7
7
|
[](https://kubernetes.io/)
|
|
8
8
|
[](https://modelcontextprotocol.io)
|
|
9
|
-
[](https://pypi.org/project/kubectl-mcp-server/)
|
|
10
10
|
[](https://www.npmjs.com/package/kubectl-mcp-server)
|
|
11
11
|
[](https://hub.docker.com/r/rohitghumare64/kubectl-mcp-server)
|
|
12
|
-
[](https://github.com/rohitg00/kubectl-mcp-server)
|
|
13
13
|
|
|
14
14
|
## MCP Client Compatibility
|
|
15
15
|
|
|
@@ -132,6 +132,9 @@ npm install -g kubectl-mcp-server
|
|
|
132
132
|
### pip (Python)
|
|
133
133
|
|
|
134
134
|
```bash
|
|
135
|
+
pip install kubectl-mcp-server
|
|
136
|
+
|
|
137
|
+
# Legacy alias (still works for backward compatibility)
|
|
135
138
|
pip install kubectl-mcp-tool
|
|
136
139
|
```
|
|
137
140
|
|
|
@@ -325,6 +328,60 @@ python -m kubectl_mcp_tool.mcp_server --transport http --port 8000
|
|
|
325
328
|
| `MCP_AUTH_AUDIENCE` | Expected token audience (default: `kubectl-mcp-server`) |
|
|
326
329
|
| `MCP_AUTH_REQUIRED_SCOPES` | Required scopes (default: `mcp:tools`) |
|
|
327
330
|
|
|
331
|
+
### Browser Automation (Optional)
|
|
332
|
+
|
|
333
|
+
| Variable | Description |
|
|
334
|
+
|----------|-------------|
|
|
335
|
+
| `MCP_BROWSER_ENABLED` | Enable browser automation tools (default: `false`) |
|
|
336
|
+
|
|
337
|
+
## Browser Tools (Optional Module)
|
|
338
|
+
|
|
339
|
+
Enable browser automation for web-based K8s operations using [agent-browser](https://github.com/vercel-labs/agent-browser).
|
|
340
|
+
|
|
341
|
+
### Setup
|
|
342
|
+
|
|
343
|
+
```bash
|
|
344
|
+
# Install agent-browser
|
|
345
|
+
npm install -g agent-browser
|
|
346
|
+
agent-browser install # Download Chromium
|
|
347
|
+
|
|
348
|
+
# Enable browser tools
|
|
349
|
+
export MCP_BROWSER_ENABLED=true
|
|
350
|
+
kubectl-mcp-server
|
|
351
|
+
```
|
|
352
|
+
|
|
353
|
+
### 19 Browser Tools
|
|
354
|
+
|
|
355
|
+
| Tool | Description |
|
|
356
|
+
|------|-------------|
|
|
357
|
+
| `browser_open` | Open URL in browser |
|
|
358
|
+
| `browser_snapshot` | Get page accessibility tree |
|
|
359
|
+
| `browser_click` | Click element by ref |
|
|
360
|
+
| `browser_fill` | Fill form field |
|
|
361
|
+
| `browser_screenshot` | Take screenshot |
|
|
362
|
+
| `browser_get_text` | Get element text |
|
|
363
|
+
| `browser_get_url` | Get current URL |
|
|
364
|
+
| `browser_wait` | Wait for element/text/timeout |
|
|
365
|
+
| `browser_close` | Close browser |
|
|
366
|
+
| `browser_test_ingress` | Test K8s service via Ingress |
|
|
367
|
+
| `browser_screenshot_service` | Screenshot K8s service UI |
|
|
368
|
+
| `browser_screenshot_grafana` | Screenshot Grafana dashboard |
|
|
369
|
+
| `browser_screenshot_argocd` | Screenshot ArgoCD app |
|
|
370
|
+
| `browser_health_check` | Health check web app |
|
|
371
|
+
| `browser_form_submit` | Fill and submit form |
|
|
372
|
+
| `browser_session_save` | Save browser session |
|
|
373
|
+
| `browser_session_load` | Load browser session |
|
|
374
|
+
| `browser_open_cloud_console` | Open EKS/GKE/AKS console |
|
|
375
|
+
| `browser_pdf_export` | Export page as PDF |
|
|
376
|
+
|
|
377
|
+
### Use Cases
|
|
378
|
+
|
|
379
|
+
- **Test deployed apps** via Ingress URLs
|
|
380
|
+
- **Screenshot Grafana/ArgoCD** dashboards
|
|
381
|
+
- **Automate cloud console** operations (EKS, GKE, AKS)
|
|
382
|
+
- **Health check** web applications
|
|
383
|
+
- **Export monitoring dashboards** as PDF
|
|
384
|
+
|
|
328
385
|
## MCP Authorization (RFC 9728)
|
|
329
386
|
|
|
330
387
|
For enterprise deployments, kubectl-mcp-server supports OAuth 2.1 authentication.
|
|
@@ -555,7 +612,7 @@ MIT License - see [LICENSE](LICENSE) for details.
|
|
|
555
612
|
|
|
556
613
|
## Links
|
|
557
614
|
|
|
558
|
-
- [PyPI Package](https://pypi.org/project/kubectl-mcp-
|
|
615
|
+
- [PyPI Package](https://pypi.org/project/kubectl-mcp-server/)
|
|
559
616
|
- [npm Package](https://www.npmjs.com/package/kubectl-mcp-server)
|
|
560
617
|
- [Docker Hub](https://hub.docker.com/r/rohitghumare64/kubectl-mcp-server)
|
|
561
618
|
- [GitHub Issues](https://github.com/rohitg00/kubectl-mcp-server/issues)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kubectl-mcp-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "A Model Context Protocol (MCP) server for Kubernetes that enables AI assistants like Claude, Cursor, and others to interact with Kubernetes clusters through natural language",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"kubernetes",
|