figma-console-mcp-cli 0.1.0 → 0.2.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/LICENSE +21 -0
- package/README.md +58 -0
- package/package.json +22 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Aravind Sanjeev
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# figma-console-mcp-cli
|
|
2
|
+
|
|
3
|
+
Interactive CLI wizard that configures the [Figma Console MCP](https://github.com/southleft/figma-console-mcp) server across AI coding clients.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx figma-console-mcp-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## What It Does
|
|
12
|
+
|
|
13
|
+
The wizard walks you through:
|
|
14
|
+
|
|
15
|
+
1. **System check** — validates Node >= 18 and detects Figma Desktop
|
|
16
|
+
2. **Authentication** — prompts for your Figma Personal Access Token
|
|
17
|
+
3. **Client detection** — finds installed AI clients and lets you pick which to configure
|
|
18
|
+
4. **Configuration** — injects the MCP server config into each client
|
|
19
|
+
5. **Connection setup** — choose Bridge (plugin) or CDP (debug port) and get setup instructions
|
|
20
|
+
6. **Health check** — verifies the connection to Figma is working
|
|
21
|
+
|
|
22
|
+
## Supported Clients
|
|
23
|
+
|
|
24
|
+
- Claude Code
|
|
25
|
+
- Claude Desktop
|
|
26
|
+
- Cursor
|
|
27
|
+
- Windsurf
|
|
28
|
+
|
|
29
|
+
## Connection Methods
|
|
30
|
+
|
|
31
|
+
- **Desktop Bridge Plugin** (recommended) — install a Figma plugin, no restart needed
|
|
32
|
+
- **CDP Debug Mode** — relaunch Figma with remote debugging enabled on port 9222
|
|
33
|
+
|
|
34
|
+
## Requirements
|
|
35
|
+
|
|
36
|
+
- Node.js >= 18
|
|
37
|
+
- Figma Desktop (for connection setup)
|
|
38
|
+
- A [Figma Personal Access Token](https://www.figma.com/developers/api#access-tokens)
|
|
39
|
+
|
|
40
|
+
## Development
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
# Install dependencies
|
|
44
|
+
npm install
|
|
45
|
+
|
|
46
|
+
# Run the CLI in dev mode
|
|
47
|
+
npm run dev
|
|
48
|
+
|
|
49
|
+
# Build
|
|
50
|
+
npm run build
|
|
51
|
+
|
|
52
|
+
# Run compiled CLI
|
|
53
|
+
npm start
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,7 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "figma-console-mcp-cli",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Interactive CLI to configure Figma Console MCP across AI coding clients",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"figma-console-mcp",
|
|
7
|
+
"mcp",
|
|
8
|
+
"figma",
|
|
9
|
+
"plugin",
|
|
10
|
+
"console",
|
|
11
|
+
"debugging",
|
|
12
|
+
"ai",
|
|
13
|
+
"anthropic",
|
|
14
|
+
"claude",
|
|
15
|
+
"cloudflare-workers"
|
|
16
|
+
],
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/aravsanj/figma-console-mcp-cli.git"
|
|
21
|
+
},
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/aravsanj/figma-console-mcp-cli/issues"
|
|
24
|
+
},
|
|
25
|
+
"homepage": "https://github.com/aravsanj/figma-console-mcp-cli#readme",
|
|
5
26
|
"type": "module",
|
|
6
27
|
"bin": {
|
|
7
28
|
"figma-console-mcp-cli": "dist/index.js"
|