figma-prototype-mcp 0.32.0 → 0.33.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 +4 -0
- package/dist/dxt/index.js +48462 -0
- package/dist/server/index.js +13 -3
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -27,6 +27,10 @@ npx figma-prototype-mcp
|
|
|
27
27
|
{ "mcpServers": { "figma-prototype": { "url": "http://localhost:3000/sse" } } }
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
+
**Claude Desktop (one-click install):** download `figma-prototype-mcp.mcpb` from the [latest GitHub release](https://github.com/smooeach/figma-prototype-mcp/releases/latest) and double-click it — Claude Desktop installs and auto-runs the server (no terminal, no JSON config). You still install the Figma plugin from Community and run it. (The manual `--stdio` command config below also works if you prefer.)
|
|
31
|
+
|
|
32
|
+
> **Org-managed Claude Desktop?** If double-click / "Install Extension" does nothing (managed accounts often allow only registry-sourced extensions), use **Settings → Extensions → Extension Developer → Load unpacked** and point it at the **unzipped** `.mcpb` folder (a `.mcpb` is a zip containing `manifest.json` + `server/`). Or clone this repo, run `npm run build:dxt`, and load-unpacked the `dxt/` folder. This sideloads the extension without the registry.
|
|
33
|
+
|
|
30
34
|
**Claude Desktop** has no native SSE support, so point it at the server over stdio — it launches the server for you (no separate `npx figma-prototype-mcp` needed):
|
|
31
35
|
```json
|
|
32
36
|
{ "mcpServers": { "figma-prototype": { "command": "npx", "args": ["-y", "figma-prototype-mcp", "--stdio"] } } }
|