@mp3wizard/figma-console-mcp 1.14.0 → 1.14.1
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/dist/local.js +0 -0
- package/package.json +85 -85
package/dist/local.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,87 +1,87 @@
|
|
|
1
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
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
2
|
+
"name": "@mp3wizard/figma-console-mcp",
|
|
3
|
+
"version": "1.14.1",
|
|
4
|
+
"description": "MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode — security-hardened fork",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/local.js",
|
|
7
|
+
"types": "dist/local.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"figma-console-mcp": "./dist/local.js",
|
|
10
|
+
"mp3wizard-figma-console-mcp": "./dist/local.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"figma-desktop-bridge",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"prepublishOnly": "npm run build",
|
|
20
|
+
"deploy": "wrangler deploy",
|
|
21
|
+
"dev": "wrangler dev",
|
|
22
|
+
"dev:local": "tsx src/local.ts",
|
|
23
|
+
"build": "npm run build:local && npm run build:cloudflare && npm run build:apps",
|
|
24
|
+
"build:apps": "cross-env APP_NAME=token-browser vite build && cross-env APP_NAME=design-system-dashboard vite build",
|
|
25
|
+
"dev:apps": "vite build --watch",
|
|
26
|
+
"build:local": "tsc -p tsconfig.local.json",
|
|
27
|
+
"build:cloudflare": "tsc -p tsconfig.cloudflare.json",
|
|
28
|
+
"start": "wrangler dev",
|
|
29
|
+
"test": "jest",
|
|
30
|
+
"test:watch": "jest --watch",
|
|
31
|
+
"test:coverage": "jest --coverage",
|
|
32
|
+
"format": "biome format --write",
|
|
33
|
+
"lint:fix": "biome lint --fix",
|
|
34
|
+
"cf-typegen": "wrangler types",
|
|
35
|
+
"type-check": "tsc --noEmit"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"mcp",
|
|
39
|
+
"figma",
|
|
40
|
+
"plugin",
|
|
41
|
+
"console",
|
|
42
|
+
"debugging",
|
|
43
|
+
"ai",
|
|
44
|
+
"anthropic",
|
|
45
|
+
"claude",
|
|
46
|
+
"cloudflare",
|
|
47
|
+
"workers"
|
|
48
|
+
],
|
|
49
|
+
"author": "mp3wizard",
|
|
50
|
+
"license": "MIT",
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "https://github.com/mp3wizard/figma-console-mcp.git"
|
|
54
|
+
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=18.0.0"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@cloudflare/puppeteer": "^0.0.11",
|
|
60
|
+
"@modelcontextprotocol/ext-apps": "^1.0.1",
|
|
61
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
62
|
+
"agents": "^0.7.1",
|
|
63
|
+
"chrome-remote-interface": "^0.33.2",
|
|
64
|
+
"pino": "^9.5.0",
|
|
65
|
+
"pino-pretty": "^13.0.0",
|
|
66
|
+
"puppeteer-core": "^24.39.1",
|
|
67
|
+
"uuid": "^11.0.3",
|
|
68
|
+
"ws": "^8.19.0",
|
|
69
|
+
"zod": "^3.25.76"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@biomejs/biome": "^2.2.5",
|
|
73
|
+
"@types/jest": "^29.5.14",
|
|
74
|
+
"@types/node": "^22.10.2",
|
|
75
|
+
"@types/uuid": "^10.0.0",
|
|
76
|
+
"@types/ws": "^8.18.1",
|
|
77
|
+
"cross-env": "^7.0.3",
|
|
78
|
+
"jest": "^29.7.0",
|
|
79
|
+
"ts-jest": "^29.2.5",
|
|
80
|
+
"tsx": "^4.19.2",
|
|
81
|
+
"typescript": "5.9.3",
|
|
82
|
+
"vite": "^6.0.0",
|
|
83
|
+
"vite-plugin-singlefile": "^2.0.0",
|
|
84
|
+
"wrangler": "^4.35.0",
|
|
85
|
+
"zod-to-json-schema": "^3.25.1"
|
|
86
|
+
}
|
|
87
87
|
}
|