@fre4x/inspector-bridge 1.0.53
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 +79 -0
- package/dist/index.js +34136 -0
- package/package.json +44 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fre4x/inspector-bridge",
|
|
3
|
+
"version": "1.0.53",
|
|
4
|
+
"description": "MCP inspector bridge server for connecting agents to other MCP servers without a browser.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"inspector-bridge-server": "dist/index.js",
|
|
9
|
+
"fre4x-inspector-bridge": "dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "node ../scripts/build-package.mjs",
|
|
16
|
+
"typecheck": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsc --noEmit",
|
|
17
|
+
"start": "node dist/index.js",
|
|
18
|
+
"dev": "tsx src/index.ts",
|
|
19
|
+
"inspector": "node ../scripts/run-official-inspector.mjs node dist/index.js",
|
|
20
|
+
"test": "vitest run --exclude dist",
|
|
21
|
+
"test:watch": "vitest"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"mcp",
|
|
25
|
+
"inspector-bridge",
|
|
26
|
+
"mcp-inspector",
|
|
27
|
+
"mcp-server",
|
|
28
|
+
"testing",
|
|
29
|
+
"ai"
|
|
30
|
+
],
|
|
31
|
+
"author": "fritzprix",
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
35
|
+
"zod": "^4.3.6"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@modelcontextprotocol/inspector": "^0.21.1",
|
|
39
|
+
"@types/node": "^25.3.5",
|
|
40
|
+
"tsx": "^4.21.0",
|
|
41
|
+
"typescript": "^5.9.3",
|
|
42
|
+
"vitest": "^4.0.18"
|
|
43
|
+
}
|
|
44
|
+
}
|