@bryan-thompson/inspector-assessment 1.0.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.
@@ -0,0 +1,14 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/mcp.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>MCP Inspector</title>
8
+ <script type="module" crossorigin src="/assets/index-EfKh2svk.js"></script>
9
+ <link rel="stylesheet" crossorigin href="/assets/index-DYiWOife.css">
10
+ </head>
11
+ <body>
12
+ <div id="root" class="w-full"></div>
13
+ </body>
14
+ </html>
@@ -0,0 +1,12 @@
1
+ <svg width="180" height="180" viewBox="0 0 180 180" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_19_13)">
3
+ <path d="M18 84.8528L85.8822 16.9706C95.2548 7.59798 110.451 7.59798 119.823 16.9706V16.9706C129.196 26.3431 129.196 41.5391 119.823 50.9117L68.5581 102.177" stroke="black" stroke-width="12" stroke-linecap="round"/>
4
+ <path d="M69.2652 101.47L119.823 50.9117C129.196 41.5391 144.392 41.5391 153.765 50.9117L154.118 51.2652C163.491 60.6378 163.491 75.8338 154.118 85.2063L92.7248 146.6C89.6006 149.724 89.6006 154.789 92.7248 157.913L105.331 170.52" stroke="black" stroke-width="12" stroke-linecap="round"/>
5
+ <path d="M102.853 33.9411L52.6482 84.1457C43.2756 93.5183 43.2756 108.714 52.6482 118.087V118.087C62.0208 127.459 77.2167 127.459 86.5893 118.087L136.794 67.8822" stroke="black" stroke-width="12" stroke-linecap="round"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_19_13">
9
+ <rect width="180" height="180" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
package/package.json ADDED
@@ -0,0 +1,106 @@
1
+ {
2
+ "name": "@bryan-thompson/inspector-assessment",
3
+ "version": "1.0.0",
4
+ "description": "Enhanced MCP Inspector with comprehensive assessment capabilities for server validation",
5
+ "license": "MIT",
6
+ "author": "Bryan Thompson <bryan@triepod.ai>",
7
+ "contributors": [
8
+ "Anthropic, PBC (original MCP Inspector)"
9
+ ],
10
+ "homepage": "https://github.com/triepod-ai/inspector-assessment",
11
+ "bugs": "https://github.com/triepod-ai/inspector-assessment/issues",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/triepod-ai/inspector-assessment.git"
15
+ },
16
+ "keywords": [
17
+ "mcp",
18
+ "model-context-protocol",
19
+ "inspector",
20
+ "assessment",
21
+ "security",
22
+ "testing",
23
+ "validation"
24
+ ],
25
+ "type": "module",
26
+ "bin": {
27
+ "mcp-inspector-assess": "cli/build/cli.js"
28
+ },
29
+ "files": [
30
+ "client/bin",
31
+ "client/dist",
32
+ "server/build",
33
+ "cli/build"
34
+ ],
35
+ "workspaces": [
36
+ "client",
37
+ "server",
38
+ "cli"
39
+ ],
40
+ "scripts": {
41
+ "build": "npm run build-server && npm run build-client && npm run build-cli",
42
+ "build-server": "cd server && npm run build",
43
+ "build-client": "cd client && npm run build",
44
+ "build-cli": "cd cli && npm run build",
45
+ "clean": "rimraf ./node_modules ./client/node_modules ./cli/node_modules ./build ./client/dist ./server/build ./cli/build ./package-lock.json && npm install",
46
+ "dev": "node client/bin/start.js --dev",
47
+ "dev:windows": "node client/bin/start.js --dev",
48
+ "kill": "node scripts/kill-server.js",
49
+ "restart": "npm run kill && npm run dev",
50
+ "assess": "tsx --tsconfig client/tsconfig.app.json scripts/run-security-assessment.ts",
51
+ "dev:sdk": "npm run link:sdk && concurrently \"npm run dev\" \"cd sdk && npm run build:esm:w\"",
52
+ "link:sdk": "(test -d sdk || ln -sf ${MCP_SDK:-$PWD/../typescript-sdk} sdk) && (cd sdk && npm link && (test -d node_modules || npm i)) && npm link @modelcontextprotocol/sdk",
53
+ "unlink:sdk": "(cd sdk && npm unlink -g) && rm sdk && npm unlink @modelcontextprotocol/sdk",
54
+ "start": "node client/bin/start.js",
55
+ "start-server": "cd server && npm run start",
56
+ "start-client": "cd client && npm run preview",
57
+ "test": "npm run prettier-check && cd client && npm test",
58
+ "test-cli": "cd cli && npm run test",
59
+ "test:e2e": "MCP_AUTO_OPEN_ENABLED=false npm run test:e2e --workspace=client",
60
+ "test:mcp": "ts-node mcp-test-harness.ts --url http://localhost:3000 --token $MCP_TOKEN --badToken $MCP_BAD_TOKEN --protocol 2025-06-18 --fuzz 500",
61
+ "prettier-fix": "prettier --write .",
62
+ "prettier-check": "prettier --check .",
63
+ "lint": "prettier --check . && cd client && npm run lint",
64
+ "prepare": "husky && npm run build",
65
+ "publish-all": "npm publish --workspaces --access public && npm publish --access public",
66
+ "update-version": "node scripts/update-version.js",
67
+ "check-version": "node scripts/check-version-consistency.js"
68
+ },
69
+ "publishConfig": {
70
+ "access": "public"
71
+ },
72
+ "dependencies": {
73
+ "@bryan-thompson/inspector-assessment-cli": "^1.0.0",
74
+ "@bryan-thompson/inspector-assessment-client": "^1.0.0",
75
+ "@bryan-thompson/inspector-assessment-server": "^1.0.0",
76
+ "@modelcontextprotocol/sdk": "^1.18.2",
77
+ "concurrently": "^9.2.0",
78
+ "node-fetch": "^3.3.2",
79
+ "open": "^10.2.0",
80
+ "shell-quote": "^1.8.3",
81
+ "spawn-rx": "^5.1.2",
82
+ "ts-node": "^10.9.2",
83
+ "zod": "^3.25.76"
84
+ },
85
+ "devDependencies": {
86
+ "@playwright/test": "^1.54.1",
87
+ "@types/jest": "^29.5.14",
88
+ "@types/node": "^22.17.0",
89
+ "@types/shell-quote": "^1.7.5",
90
+ "ajv": "^8.17.1",
91
+ "husky": "^9.1.7",
92
+ "jest-fixed-jsdom": "^0.0.9",
93
+ "lint-staged": "^16.1.5",
94
+ "prettier": "^3.6.2",
95
+ "rimraf": "^6.0.1",
96
+ "typescript": "^5.4.2"
97
+ },
98
+ "engines": {
99
+ "node": ">=22.7.5"
100
+ },
101
+ "lint-staged": {
102
+ "**/*.{js,ts,jsx,tsx,json,md}": [
103
+ "prettier --write"
104
+ ]
105
+ }
106
+ }