@relay-core/mcp 0.3.4 → 0.3.5
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/mcp-probe +6 -0
- package/package.json +2 -2
package/bin/mcp-probe
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
const { spawnSync } = require("child_process");
|
|
3
|
+
const path = require("path");
|
|
4
|
+
const binary = process.platform === "win32" ? "relay-core-probe.exe" : "relay-core-probe";
|
|
5
|
+
const result = spawnSync(path.join(__dirname, binary), process.argv.slice(2), { stdio: "inherit" });
|
|
6
|
+
process.exit(result.status ?? 1);
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@relay-core/mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "RelayCore MCP server — AI agent traffic control via Model Context Protocol",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "github:relaycraft/relay-core",
|
|
7
7
|
"bin": {
|
|
8
|
-
"relay-core-probe": "./bin/
|
|
8
|
+
"relay-core-probe": "./bin/mcp-probe"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"install.js",
|