figma-developer-mcp
Provides read-only access to Figma via the Figma REST API, allowing retrieval of file and node layouts, styles, dev resources, and downloading image assets.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@figma-developer-mcpfetch the styles used in my Figma file"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Figma MCP (personal access token)
Read-only Figma access for any MCP client, driven by your own PAT instead of per-client OAuth.
This folder is the single source of truth — ~/.config/figma-mcp is a symlink to it.
Layout
Path | Purpose |
| stdio launcher (700). Every client points here, so no client config holds a secret |
| your token (600, git-ignored). The only place it exists |
| template. Never put a real token here — it is world-readable and not git-ignored |
| pins the entire dependency tree |
| local locked install (git-ignored) |
| default download dir for |
| project-level MCP config at the |
Server: figma-developer-mcp@0.13.2 (Framelink), Figma REST API, stdio transport.
Related MCP server: ai-sdlc-figma-mcp-server
Token
Figma -> account settings -> Security -> Personal access tokens. Scopes:
file_content:read— for/v1/files/:key,/v1/files/:key/nodes,/v1/images/:keyfile_dev_resources:read— Dev resources
Rotate by editing env only — no client config changes. Set an expiration when creating it: a PAT can read
every file your account can access, org-wide, with no per-file scoping.
Hardening applied
Token passed via env var, never a CLI flag, so it stays out of
psoutput.Locked install rather than
npx -y:package-lock.jsonpins all 134 transitive packages, so dependencies cannot drift between runs. Reinstall withnpm ci. (Pinning only the top-level version would still have let sub-dependencies resolve fresh on every launch.)Telemetry off: the package bundles PostHog with a hardcoded key. The launcher exports
FRAMELINK_TELEMETRY=offandDO_NOT_TRACK=1.
Client snippets
Replace <REPO> with the absolute path to this folder. These configs are read by different
runtimes and none of them reliably expand ~ or $HOME, so the path has to be spelled out.
Standard mcpServers JSON — Gemini CLI (~/.gemini/settings.json), Cursor (~/.cursor/mcp.json), VS Code, project .mcp.json:
{
"mcpServers": {
"figma": {
"command": "<REPO>/figma-mcp.sh",
"args": []
}
}
}opencode (~/.config/opencode/opencode.jsonc) — configured:
{
"mcp": {
"figma": {
"type": "local",
"command": ["<REPO>/figma-mcp.sh"],
"enabled": true
}
}
}Claude Code — registered at user scope:
claude mcp add figma -s user -- <REPO>/figma-mcp.shCodex CLI (~/.codex/config.toml) — untested, Codex not installed here:
[mcp_servers.figma]
command = "<REPO>/figma-mcp.sh"Smoke test
printf '%s\n%s\n%s\n' \
'{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"t","version":"0"}}}' \
'{"jsonrpc":"2.0","method":"notifications/initialized"}' \
'{"jsonrpc":"2.0","id":2,"method":"tools/list"}' \
| ./figma-mcp.shExpect Figma MCP Server 0.13.2 and two tools: get_figma_data, download_figma_images.
Note: grep -r silently returns nothing under some sandboxes on this machine. Use
find . -type f -exec grep -l PATTERN {} + when sweeping for secrets.
Limits
Read-only: file/node layout, styles, image asset download. Creating Figma files, Code Connect, and design
generation exist only in Figma's official server (https://mcp.figma.com/mcp), which is OAuth-only —
it does not accept personal access tokens — and only admits clients on Figma's MCP catalog.
This server cannot be deployed
Maintenance
Related MCP Connectors
The Figma MCP server brings Figma design context directly into your AI workflow.
Read-only MCP over the Mzizi design system registry — nodes, components, ownership.
Query, browse, and automate OmegaAI workspaces from any MCP client. Streamable HTTP with OAuth 2.0.
Inspect and edit media canvases, run existing Flows, and retrieve results. Vyrl MCP token required.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceRead-only Figma MCP server that enables design-to-code workflows by talking to the Figma REST API with a personal access token, for use with Claude Code and GitHub Copilot.1,589 npmMIT
- FlicenseNot gradedqualityCmaintenanceRead-only MCP server that wraps the Figma REST API, providing tools like get file metadata, list frames, and export node image URLs for AI SDLC agents.-
- AlicenseAqualityCmaintenanceEnables interaction with the Figma API through MCP tools for managing files, projects, and comments, plus a real-time observability dashboard.702ISC
- AlicenseNot gradedqualityCmaintenanceA read-only MCP proxy for the Figma REST API, providing tools to fetch design context, file data, images, comments, and user info using a personal access token. Designed for MCP clients that cannot use Figma's official OAuth flow.MIT