@mcpjam/inspector 0.3.0 → 0.3.2
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 +18 -0
- package/client/bin/client.js +0 -0
- package/client/dist/assets/{OAuthCallback-CdxuZKBm.js → OAuthCallback-CyGF8_8H.js} +1 -2
- package/client/dist/assets/{OAuthDebugCallback-BJaIMNT8.js → OAuthDebugCallback-BiLISBxK.js} +1 -2
- package/client/dist/assets/{index-CdlQwnmd.js → index-BNLcDjKX.js} +24318 -17051
- package/client/dist/assets/{index-De3JSks9.css → index-CThH1rBM.css} +66 -2
- package/client/dist/index.html +2 -2
- package/package.json +4 -3
- package/server/build/index.js +9 -0
- package/server/build/mcpProxy.js +8 -1
- package/client/dist/assets/oauthUtils-DTcoXpSP.js +0 -33
package/README.md
CHANGED
|
@@ -33,6 +33,24 @@ npx @mcpjam/inspector@latest
|
|
|
33
33
|
|
|
34
34
|
That's it! The inspector will launch automatically in your browser at `http://localhost:6274`.
|
|
35
35
|
|
|
36
|
+
### Running with Docker
|
|
37
|
+
|
|
38
|
+
You can also run the inspector using Docker. First, make sure you have Docker installed and running.
|
|
39
|
+
|
|
40
|
+
Pull the latest image from Docker Hub:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
docker pull mcpjam/mcp-inspector:main
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Then, run the container:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
docker run --rm -p 6274:6274 -p 6277:6277 mcpjam/mcp-inspector:main
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
The inspector will be available in your browser at `http://127.0.0.1:6274`.
|
|
53
|
+
|
|
36
54
|
---
|
|
37
55
|
|
|
38
56
|
## 📸 Screenshots
|
package/client/bin/client.js
CHANGED
|
File without changes
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { u as useToast, r as reactExports, j as jsxRuntimeExports, S as SESSION_KEYS, I as InspectorOAuthClientProvider, a as auth } from "./index-
|
|
2
|
-
import { p as parseOAuthCallbackParams, g as generateOAuthErrorDescription } from "./oauthUtils-DTcoXpSP.js";
|
|
1
|
+
import { u as useToast, r as reactExports, j as jsxRuntimeExports, p as parseOAuthCallbackParams, g as generateOAuthErrorDescription, S as SESSION_KEYS, I as InspectorOAuthClientProvider, a as auth } from "./index-BNLcDjKX.js";
|
|
3
2
|
const OAuthCallback = ({ onConnect }) => {
|
|
4
3
|
const { toast } = useToast();
|
|
5
4
|
const hasProcessedRef = reactExports.useRef(false);
|
package/client/dist/assets/{OAuthDebugCallback-BJaIMNT8.js → OAuthDebugCallback-BiLISBxK.js}
RENAMED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { r as reactExports, S as SESSION_KEYS, j as jsxRuntimeExports } from "./index-
|
|
2
|
-
import { p as parseOAuthCallbackParams, g as generateOAuthErrorDescription } from "./oauthUtils-DTcoXpSP.js";
|
|
1
|
+
import { r as reactExports, S as SESSION_KEYS, p as parseOAuthCallbackParams, j as jsxRuntimeExports, g as generateOAuthErrorDescription } from "./index-BNLcDjKX.js";
|
|
3
2
|
const OAuthDebugCallback = ({ onConnect }) => {
|
|
4
3
|
reactExports.useEffect(() => {
|
|
5
4
|
let isProcessed = false;
|