@bryan-thompson/inspector-assessment 1.7.1 → 1.8.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 +6 -1
- package/client/dist/assets/{OAuthCallback-cGhwkoyY.js → OAuthCallback-C6NJ8fGr.js} +1 -1
- package/client/dist/assets/{OAuthDebugCallback-2rmUqser.js → OAuthDebugCallback-MIqvflwd.js} +1 -1
- package/client/dist/assets/{index-BnFixpvH.js → index-CW7GS_di.js} +759 -283
- package/client/dist/assets/{index-Bj7kEsw0.css → index-Cuc9GxjD.css} +5 -1
- package/client/dist/index.html +2 -2
- package/client/lib/services/assessment/lib/concurrencyLimit.d.ts +20 -0
- package/client/lib/services/assessment/lib/concurrencyLimit.d.ts.map +1 -0
- package/client/lib/services/assessment/lib/concurrencyLimit.js +51 -0
- package/client/lib/services/assessment/modules/ErrorHandlingAssessor.d.ts.map +1 -1
- package/client/lib/services/assessment/modules/ErrorHandlingAssessor.js +14 -4
- package/client/lib/services/assessment/modules/FunctionalityAssessor.d.ts.map +1 -1
- package/client/lib/services/assessment/modules/FunctionalityAssessor.js +15 -5
- package/client/lib/services/assessment/modules/SecurityAssessor.d.ts.map +1 -1
- package/client/lib/services/assessment/modules/SecurityAssessor.js +15 -5
- package/package.json +6 -6
- package/server/build/index.js +20 -5
- package/client/README.md +0 -50
package/README.md
CHANGED
|
@@ -611,7 +611,12 @@ The server will start up and the UI will be accessible at `http://localhost:6274
|
|
|
611
611
|
**Note**: Docker container is not yet available for `@bryan-thompson/inspector-assessment`. The Docker image below is for the upstream inspector only (without assessment features):
|
|
612
612
|
|
|
613
613
|
```bash
|
|
614
|
-
docker run --rm
|
|
614
|
+
docker run --rm \
|
|
615
|
+
-p 127.0.0.1:6274:6274 \
|
|
616
|
+
-p 127.0.0.1:6277:6277 \
|
|
617
|
+
-e HOST=0.0.0.0 \
|
|
618
|
+
-e MCP_AUTO_OPEN_ENABLED=false \
|
|
619
|
+
ghcr.io/modelcontextprotocol/inspector:latest
|
|
615
620
|
```
|
|
616
621
|
|
|
617
622
|
### From an MCP server repository
|
|
@@ -1,4 +1,4 @@
|
|
|
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-
|
|
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-CW7GS_di.js";
|
|
2
2
|
const OAuthCallback = ({ onConnect }) => {
|
|
3
3
|
const { toast } = useToast();
|
|
4
4
|
const hasProcessedRef = reactExports.useRef(false);
|
package/client/dist/assets/{OAuthDebugCallback-2rmUqser.js → OAuthDebugCallback-MIqvflwd.js}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as reactExports, S as SESSION_KEYS, p as parseOAuthCallbackParams, j as jsxRuntimeExports, g as generateOAuthErrorDescription } from "./index-
|
|
1
|
+
import { r as reactExports, S as SESSION_KEYS, p as parseOAuthCallbackParams, j as jsxRuntimeExports, g as generateOAuthErrorDescription } from "./index-CW7GS_di.js";
|
|
2
2
|
const OAuthDebugCallback = ({ onConnect }) => {
|
|
3
3
|
reactExports.useEffect(() => {
|
|
4
4
|
let isProcessed = false;
|