vkhanhqui/figma-mcp-go
Figma MCP for free users — no rate limits, full read/write, text to designs, designs to code
Platform-specific configuration:
{
"mcpServers": {
"figma-mcp-go": {
"command": "npx",
"args": [
"-y",
"figma-mcp-go"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Figma MCP — Free, No Rate Limits
Open-source Figma MCP server with full read/write access via plugin — no REST API, no rate limits. Turn text into designs and designs into real code. Works with Cursor, Claude, GitHub Copilot, and any MCP-compatible AI tool.
Highlights
https://github.com/user-attachments/assets/17bda971-0e83-4f18-8758-8ac2b8dcba62
---
Most Figma MCP servers rely on the Figma REST API.
That sounds fine… until you hit this:
| Plan | Limit | |------|-------| | Starter / View / Collab | 6 tool calls/month | | Pro / Org (Dev seat) | 200 tool calls/day | | Enterprise | 600 tool calls/day |
If you're experimenting with AI tools, you'll burn through that in minutes.
I didn't have enough money to pay for higher limits. So I built something that doesn't use the API at all.
---
Install via npx — no build step required. Watch the setup video or follow the steps below.
[](https://youtu.be/DjqyU0GKv9k)
Claude Code CLI
claude mcp add -s project figma-mcp-go -- npx -y @vkhanhqui/figma-mcp-go@latest.mcp.json (Claude and other MCP-compatible tools)
{
"mcpServers": {
"figma-mcp-go": {
"command": "npx",
"args": ["-y", "@vkhanhqui/figma-mcp-go"]
}
}
}.vscode/mcp.json (Cursor / VS Code / GitHub Copilot)
{
"servers": {
"figma-mcp-go": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@vkhanhqui/figma-mcp-go"
]
}
}
}manifest.json fLoading reviews...