figma-console-mcp-cli 0.1.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +58 -0
  2. package/package.json +1 -1
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,6 +1,6 @@
1
1
  {
2
2
  "name": "figma-console-mcp-cli",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Interactive CLI to configure Figma Console MCP across AI coding clients",
5
5
  "type": "module",
6
6
  "bin": {