
Figma
โ 66from JayZeeDesign
Access and interact with Figma files and prototypes directly from AI agents.
๐ฅ๐ฅ๐ฅโ VerifiedFreeQuick setup
Figma MCP Python
Allow your AI coding agents to access Figma files & prototypes directly. You can DM me for any issues / improvements: https://x.com/jasonzhou1993
Test locally
python -m figma_mcp.mainCopy & paste โ that's it
pipx install figma-mcpQuick Installation with pipx
pipx install figma-mcpFor Cursor:
- In settings, add an MCP server using the command:
figma-mcp --figma-api-key=your_figma_key- OR Add a
.cursor/mcp.jsonfile in your project:
{
"mcpServers": {
"figma-python": {
"command": "figma-mcp",
"args": [
"--figma-api-key=your_figma_key"
]
}
}
}For other IDEs like Windsurf, use an MCP configuration file (e.g., mcp_config.json):
{
"mcpServers": {
"figma-python": {
"command": "figma-mcp",
"args": [
"--figma-api-key=your_figma_key"
]
}
}
}Install uv and set up the environment
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv
source .venv/bin/activate
uv syncNo common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.
Licensed under MITโ you can use, modify, and redistribute it under that license's terms.
View the full license file on GitHub โ