@futuretea/rancher-mcp-server 0.1.1 → 0.1.2
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/bin/index.js +1 -1
- package/package.json +7 -7
package/bin/index.js
CHANGED
|
@@ -15,7 +15,7 @@ const BINARY_MAP = {
|
|
|
15
15
|
const resolveBinaryPath = () => {
|
|
16
16
|
try {
|
|
17
17
|
const binary = BINARY_MAP[`${process.platform}_${process.arch}`];
|
|
18
|
-
return require.resolve(
|
|
18
|
+
return require.resolve(`@futuretea/${binary.name}/bin/${binary.name}${binary.suffix}`);
|
|
19
19
|
} catch (e) {
|
|
20
20
|
throw new Error(`Could not resolve binary path for platform/arch: ${process.platform}/${process.arch}`);
|
|
21
21
|
}
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@futuretea/rancher-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
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.1.
|
|
11
|
-
"@futuretea/rancher-mcp-server-darwin-arm64": "0.1.
|
|
12
|
-
"@futuretea/rancher-mcp-server-linux-amd64": "0.1.
|
|
13
|
-
"@futuretea/rancher-mcp-server-linux-arm64": "0.1.
|
|
14
|
-
"@futuretea/rancher-mcp-server-windows-amd64": "0.1.
|
|
15
|
-
"@futuretea/rancher-mcp-server-windows-arm64": "0.1.
|
|
10
|
+
"@futuretea/rancher-mcp-server-darwin-amd64": "0.1.2",
|
|
11
|
+
"@futuretea/rancher-mcp-server-darwin-arm64": "0.1.2",
|
|
12
|
+
"@futuretea/rancher-mcp-server-linux-amd64": "0.1.2",
|
|
13
|
+
"@futuretea/rancher-mcp-server-linux-arm64": "0.1.2",
|
|
14
|
+
"@futuretea/rancher-mcp-server-windows-amd64": "0.1.2",
|
|
15
|
+
"@futuretea/rancher-mcp-server-windows-arm64": "0.1.2"
|
|
16
16
|
},
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|