Last active
September 23, 2025 15:25
-
-
Save thatanjan/53fcfc3345edf547bfe72f4d877cf6d2 to your computer and use it in GitHub Desktop.
Figma mcp server setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "servers": { | |
| "figma-mcp-server": { | |
| "type": "stdio", | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "figma-developer-mcp", | |
| "--figma-api-key=${input:figma-access-token}", | |
| "--stdio" | |
| ], | |
| "version": "0.0.1" | |
| }, | |
| }, | |
| "inputs": [ | |
| { | |
| "type": "promptString", | |
| "id": "figma-access-token", | |
| "description": "Figma token", | |
| "password": true | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment