@futuretea/rancher-mcp-server 0.4.5 → 0.5.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 +23 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -397,6 +397,29 @@ Analyze node health and resource usage. Shows node capacity, allocatable resourc
|
|
|
397
397
|
|
|
398
398
|
</details>
|
|
399
399
|
|
|
400
|
+
<details>
|
|
401
|
+
<summary>kubernetes_watch_diff</summary>
|
|
402
|
+
|
|
403
|
+
Watch Kubernetes resources and return git-style diffs of changes at regular intervals, similar to the Linux `watch` command.
|
|
404
|
+
|
|
405
|
+
| Parameter | Type | Required | Description |
|
|
406
|
+
|-----------|------|----------|-------------|
|
|
407
|
+
| `cluster` | string | Yes | Cluster ID |
|
|
408
|
+
| `kind` | string | Yes | Resource kind (e.g., pod, deployment, service, or dotted `resource.group` form) |
|
|
409
|
+
| `namespace` | string | No | Namespace (empty = all namespaces or cluster-scoped resources) |
|
|
410
|
+
| `labelSelector` | string | No | Label selector (e.g., "app=nginx,env=prod") |
|
|
411
|
+
| `fieldSelector` | string | No | Field selector for filtering resources |
|
|
412
|
+
| `ignoreStatus` | boolean | No | Ignore changes under the `status` field when computing diffs (similar to `--no-status`) |
|
|
413
|
+
| `ignoreMeta` | boolean | No | Ignore non-essential metadata differences (similar to `--no-meta`) |
|
|
414
|
+
| `intervalSeconds` | integer | No | Interval in seconds between evaluations (default: 10, min: 1, max: 600) |
|
|
415
|
+
| `iterations` | integer | No | Number of times to re-evaluate and diff before returning (default: 6, min: 1, max: 100) |
|
|
416
|
+
|
|
417
|
+
**Notes:**
|
|
418
|
+
- Each iteration compares the current resource state with the previous iteration and only emits diffs when there are changes.
|
|
419
|
+
- The tool returns the concatenated diffs for all iterations in a single response.
|
|
420
|
+
|
|
421
|
+
</details>
|
|
422
|
+
|
|
400
423
|
<details>
|
|
401
424
|
<summary>kubernetes_describe</summary>
|
|
402
425
|
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@futuretea/rancher-mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Model Context Protocol (MCP) server for Rancher multi-cluster management",
|
|
5
5
|
"main": "./bin/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"rancher-mcp-server": "bin/index.js"
|
|
8
8
|
},
|
|
9
9
|
"optionalDependencies": {
|
|
10
|
-
"@futuretea/rancher-mcp-server-darwin-amd64": "0.
|
|
11
|
-
"@futuretea/rancher-mcp-server-darwin-arm64": "0.
|
|
12
|
-
"@futuretea/rancher-mcp-server-linux-amd64": "0.
|
|
13
|
-
"@futuretea/rancher-mcp-server-linux-arm64": "0.
|
|
14
|
-
"@futuretea/rancher-mcp-server-windows-amd64": "0.
|
|
15
|
-
"@futuretea/rancher-mcp-server-windows-arm64": "0.
|
|
10
|
+
"@futuretea/rancher-mcp-server-darwin-amd64": "0.5.0",
|
|
11
|
+
"@futuretea/rancher-mcp-server-darwin-arm64": "0.5.0",
|
|
12
|
+
"@futuretea/rancher-mcp-server-linux-amd64": "0.5.0",
|
|
13
|
+
"@futuretea/rancher-mcp-server-linux-arm64": "0.5.0",
|
|
14
|
+
"@futuretea/rancher-mcp-server-windows-amd64": "0.5.0",
|
|
15
|
+
"@futuretea/rancher-mcp-server-windows-arm64": "0.5.0"
|
|
16
16
|
},
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|