-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "mcp-app-debug",
"version": "0.5.0",
"description": "Debug both ends of MCP Apps — render your server's app in a Playwright browser with 7 automated diagnostics (npx mcp-app-debug <server-url>), or grade a HOST's MCP Apps conformance with a probe fixture server (npx mcp-app-debug host). Speaks the 2025-11-25 and stateless 2026-07-28 MCP revisions.",
"type": "module",
"bin": {
"mcp-app-debug": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": "Booyaka101 <cbosch101@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Booyaka101/mcp-app-debug.git"
},
"homepage": "https://github.com/Booyaka101/mcp-app-debug#readme",
"bugs": {
"url": "https://github.com/Booyaka101/mcp-app-debug/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "node esbuild.mjs",
"typecheck": "tsc",
"test": "node test/run-scenarios.mjs",
"prepack": "node esbuild.mjs"
},
"keywords": [
"mcp",
"mcp-apps",
"model-context-protocol",
"debug",
"diagnostics",
"conformance",
"host-conformance",
"app-bridge",
"ui",
"iframe",
"csp",
"stdio",
"playwright"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/client": "^2.0.0",
"@modelcontextprotocol/ext-apps": "^1.7.4",
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^15.0.0",
"playwright": "^1.62.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^26.1.1",
"esbuild": "^0.28.1",
"tsx": "^4.23.1",
"typescript": "^7.0.2"
},
"allowScripts": {
"esbuild@0.28.1": true
}
}