@bryan-thompson/inspector-assessment-client 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.
- package/README.md +50 -0
- package/bin/client.js +62 -0
- package/bin/start.js +340 -0
- package/dist/assets/OAuthCallback-CLEJW5KO.js +55 -0
- package/dist/assets/OAuthDebugCallback-B154gAVm.js +64 -0
- package/dist/assets/index-DYiWOife.css +3138 -0
- package/dist/assets/index-EfKh2svk.js +53519 -0
- package/dist/index.html +14 -0
- package/dist/mcp.svg +12 -0
- package/package.json +94 -0
package/dist/index.html
ADDED
|
@@ -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>
|
package/dist/mcp.svg
ADDED
|
@@ -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,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bryan-thompson/inspector-assessment-client",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Client-side application for the Enhanced MCP Inspector with assessment capabilities",
|
|
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
|
+
"type": "module",
|
|
17
|
+
"bin": {
|
|
18
|
+
"mcp-inspector-assess-client": "./bin/start.js"
|
|
19
|
+
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"bin",
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"dev": "vite --port 6274",
|
|
29
|
+
"build": "tsc -b && vite build",
|
|
30
|
+
"lint": "eslint .",
|
|
31
|
+
"preview": "vite preview --port 6274",
|
|
32
|
+
"test": "jest --config jest.config.cjs",
|
|
33
|
+
"test:watch": "jest --config jest.config.cjs --watch",
|
|
34
|
+
"test:e2e": "playwright test e2e && npm run cleanup:e2e",
|
|
35
|
+
"cleanup:e2e": "node e2e/global-teardown.js"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@modelcontextprotocol/sdk": "^1.18.2",
|
|
39
|
+
"@radix-ui/react-checkbox": "^1.1.4",
|
|
40
|
+
"@radix-ui/react-dialog": "^1.1.3",
|
|
41
|
+
"@radix-ui/react-icons": "^1.3.0",
|
|
42
|
+
"@radix-ui/react-label": "^2.1.0",
|
|
43
|
+
"@radix-ui/react-popover": "^1.1.3",
|
|
44
|
+
"@radix-ui/react-progress": "^1.1.7",
|
|
45
|
+
"@radix-ui/react-select": "^2.1.2",
|
|
46
|
+
"@radix-ui/react-slot": "^1.1.0",
|
|
47
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
48
|
+
"@radix-ui/react-tabs": "^1.1.1",
|
|
49
|
+
"@radix-ui/react-toast": "^1.2.6",
|
|
50
|
+
"@radix-ui/react-tooltip": "^1.1.8",
|
|
51
|
+
"ajv": "^6.12.6",
|
|
52
|
+
"class-variance-authority": "^0.7.1",
|
|
53
|
+
"clsx": "^2.1.1",
|
|
54
|
+
"cmdk": "^1.0.4",
|
|
55
|
+
"lucide-react": "^0.523.0",
|
|
56
|
+
"pkce-challenge": "^4.1.0",
|
|
57
|
+
"prismjs": "^1.30.0",
|
|
58
|
+
"react": "^18.3.1",
|
|
59
|
+
"react-dom": "^18.3.1",
|
|
60
|
+
"react-simple-code-editor": "^0.14.1",
|
|
61
|
+
"serve-handler": "^6.1.6",
|
|
62
|
+
"tailwind-merge": "^2.5.3",
|
|
63
|
+
"zod": "^3.25.76"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@eslint/js": "^9.11.1",
|
|
67
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
68
|
+
"@testing-library/react": "^16.2.0",
|
|
69
|
+
"@types/jest": "^29.5.14",
|
|
70
|
+
"@types/node": "^22.17.0",
|
|
71
|
+
"@types/prismjs": "^1.26.5",
|
|
72
|
+
"@types/react": "^18.3.23",
|
|
73
|
+
"@types/react-dom": "^18.3.0",
|
|
74
|
+
"@types/serve-handler": "^6.1.4",
|
|
75
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
76
|
+
"autoprefixer": "^10.4.20",
|
|
77
|
+
"co": "^4.6.0",
|
|
78
|
+
"eslint": "^9.11.1",
|
|
79
|
+
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
80
|
+
"eslint-plugin-react-refresh": "^0.4.12",
|
|
81
|
+
"globals": "^15.9.0",
|
|
82
|
+
"identity-obj-proxy": "^3.0.0",
|
|
83
|
+
"jest": "^29.7.0",
|
|
84
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
85
|
+
"jest-fixed-jsdom": "^0.0.9",
|
|
86
|
+
"postcss": "^8.5.6",
|
|
87
|
+
"tailwindcss": "^3.4.13",
|
|
88
|
+
"tailwindcss-animate": "^1.0.7",
|
|
89
|
+
"ts-jest": "^29.4.0",
|
|
90
|
+
"typescript": "^5.5.3",
|
|
91
|
+
"typescript-eslint": "^8.38.0",
|
|
92
|
+
"vite": "^6.3.5"
|
|
93
|
+
}
|
|
94
|
+
}
|