mcp-server-kubernetes 1.5.0 → 1.6.1
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 +5 -2
- package/dist/index.d.ts +1034 -1
- package/dist/index.js +61 -48
- package/dist/models/response-schemas.d.ts +71 -0
- package/dist/models/response-schemas.js +19 -0
- package/dist/tools/delete_configmap.d.ts +26 -0
- package/dist/tools/delete_configmap.js +49 -0
- package/dist/tools/get_configmap.d.ts +27 -0
- package/dist/tools/get_configmap.js +48 -0
- package/dist/tools/list_pods.js +1 -1
- package/dist/tools/update_configmap.d.ts +33 -0
- package/dist/tools/update_configmap.js +71 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,12 +66,13 @@ npx mcp-chat --config "%APPDATA%\Claude\claude_desktop_config.json"
|
|
|
66
66
|
## Features
|
|
67
67
|
|
|
68
68
|
- [x] Connect to a Kubernetes cluster
|
|
69
|
-
- [x] List all pods, services, deployments
|
|
70
|
-
- [x] Describe nodes
|
|
69
|
+
- [x] List all pods, services, deployments
|
|
70
|
+
- [x] List, Describe nodes
|
|
71
71
|
- [x] Create, describe, delete a pod
|
|
72
72
|
- [x] List all namespaces, create a namespace
|
|
73
73
|
- [x] Create custom pod & deployment configs, update deployment replicas
|
|
74
74
|
- [x] Create, describe, delete, update a service
|
|
75
|
+
- [x] Create, get, update, delete a ConfigMap
|
|
75
76
|
- [x] Get logs from a pod for debugging (supports pods, deployments, jobs, and label selectors)
|
|
76
77
|
- [x] Support Helm v3 for installing charts
|
|
77
78
|
- Install charts with custom values
|
|
@@ -154,6 +155,8 @@ For more advanced information like using SSE transport, Non-destructive mode wit
|
|
|
154
155
|
|
|
155
156
|
## Architecture
|
|
156
157
|
|
|
158
|
+
See this [DeepWiki link](https://deepwiki.com/Flux159/mcp-server-kubernetes) for a more indepth architecture overview created by Devin.
|
|
159
|
+
|
|
157
160
|
This section describes the high-level architecture of the MCP Kubernetes server.
|
|
158
161
|
|
|
159
162
|
### Request Flow
|