@fre4x/mcp-inspector 1.0.46 → 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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
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,12 +1,12 @@
1
1
  {
2
2
  "name": "@fre4x/mcp-inspector",
3
- "version": "1.0.46",
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"