@fre4x/mcp-inspector 1.0.45 → 1.0.47
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 +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ inspector_connect(server_url="https://example.com/sse", transport="sse",
|
|
|
58
58
|
Run without any real server:
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
|
-
MOCK=true npx @fre4x/mcp-inspector
|
|
61
|
+
MOCK=true npx --yes --package @fre4x/mcp-inspector fre4x-mcp-inspector
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
All tools return realistic fixture data when `MOCK=true` or `INSPECTOR_MOCK=true`.
|
|
@@ -70,9 +70,9 @@ All tools return realistic fixture data when `MOCK=true` or `INSPECTOR_MOCK=true
|
|
|
70
70
|
```json
|
|
71
71
|
{
|
|
72
72
|
"mcpServers": {
|
|
73
|
-
"mcp-inspector": {
|
|
73
|
+
"fre4x-mcp-inspector": {
|
|
74
74
|
"command": "npx",
|
|
75
|
-
"args": ["-y", "@fre4x/mcp-inspector"]
|
|
75
|
+
"args": ["-y", "--package", "@fre4x/mcp-inspector", "fre4x-mcp-inspector"]
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
}
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fre4x/mcp-inspector",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.47",
|
|
4
4
|
"description": "MCP server wrapping the MCP Inspector CLI — lets AI agents test any MCP server without a browser.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"mcp-inspector-server": "dist/index.js",
|
|
9
|
-
"mcp-inspector": "dist/index.js"
|
|
9
|
+
"fre4x-mcp-inspector": "dist/index.js"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist"
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
|
-
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && npx esbuild src/index.ts --bundle --outfile=dist/index.js --platform=node --format=esm --banner:js=\"import{createRequire}from'module';const require=createRequire(import.meta.url);\"",
|
|
15
|
+
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && npx esbuild src/index.ts --bundle --outfile=dist/index.js --platform=node --format=esm --banner:js=\"import{createRequire}from'module';const require=createRequire(import.meta.url);\" && node -e \"const fs=require('fs');const p='dist/index.js';const c=fs.readFileSync(p,'utf8');const next=c.startsWith('#!/usr/bin/env node')?c:'#!/usr/bin/env node\\n'+c;fs.writeFileSync(p,next);fs.chmodSync(p,0o755);\"",
|
|
16
16
|
"typecheck": "echo \"typecheck skipped: mcp-inspector SDK types cause OOM in CI; esbuild build validates imports\"",
|
|
17
17
|
"start": "node dist/index.js",
|
|
18
18
|
"dev": "tsx src/index.ts",
|