@agent-inspect/mcp-server 6.10.0 → 6.12.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 CHANGED
@@ -24,7 +24,9 @@ npm install @agent-inspect/mcp-server
24
24
  ## Example
25
25
 
26
26
  ```bash
27
- npx agent-inspect-mcp-server --dir .agent-inspect
27
+ npx @agent-inspect/mcp-server --dir .agent-inspect
28
+ # or after install:
29
+ # npx agent-inspect-mcp-server --dir .agent-inspect
28
30
  ```
29
31
 
30
32
  ## Privacy
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+
4
+ const { main } = require("../dist/cli.cjs");
5
+
6
+ main(process.argv.slice(2)).then(
7
+ (code) => {
8
+ if (code !== 0) process.exitCode = code;
9
+ },
10
+ (error) => {
11
+ process.stderr.write(`${error instanceof Error ? error.message : String(error)}\n`);
12
+ process.exitCode = 1;
13
+ },
14
+ );