Enables interaction with Figma designs and projects, providing tools for analyzing design files, extracting components and styles, exporting assets in multiple formats (PNG, SVG, PDF, JPG), managing comments and feedback, and retrieving project and team metadata.
Click on "Install 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 MCP Servershow me all components in the design system 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 Server (Apify Actor)
Model Context Protocol (MCP) server that exposes Figma REST API capabilities to AI assistants (Cursor, Claude, custom agents). Runs as a long-running web server on the Apify platform (standby / container URL) or locally via apify run.
Features
File analysis — structure, metadata, styles, depth-limited trees
Components — list, details, usage
Assets — export nodes (PNG, SVG, PDF, JPG)
Comments — read and create
Projects / teams — listings and metadata
MCP resources & prompts for guided workflows
Authentication
Personal Access Token (default)
Recommended for solo use. Set figmaAccessToken in Actor input (or FIGMA_ACCESS_TOKEN in env).
Generate: Figma → Settings → Security → Personal access tokens
API header:
X-Figma-TokenWhen PAT is set, OAuth is disabled for API calls (and
/oauth/*routes return an error).
OAuth 2.0 (optional — team / shared files)
Use when you omit figmaAccessToken and provide a Figma OAuth app:
Input | Purpose |
| |
| Same app |
| Exact redirect URL registered on the app, e.g. |
| Optional; comma-separated scopes. Must be a subset of the app’s configured scopes. Defaults include |
Flow
Start the Actor with OAuth fields filled and no PAT.
Open
GET https://<container-url>/oauth/authorizein a browser (normal browser — not an embedded WebView; Figma requirement).After consent, Figma redirects to
/oauth/callback; tokens are stored in the run’s default key-value store (FIGMA_OAUTH_SESSION) and refreshed when near expiry.
Token exchange uses Figma’s documented endpoints (https://api.figma.com/v1/oauth/token and .../oauth/refresh). Codes expire quickly — complete the redirect promptly.
Requirements
Node.js ≥ 20
Apify account (for cloud)
Figma PAT and/or OAuth app
Quick start (Apify Cloud)
npm install
apify login
apify pushIn Apify Console, open the Actor, set input (at minimum figmaAccessToken), start with web server / long-running as required by your template, then use the Container URL from the run.
Deploy reference: apify push builds and publishes; see Apify CLI.
Configuration (input)
Parameter | Type | Default | Description |
| string | — | PAT (recommended). If set, used for all Figma API calls. |
| integer |
| HTTP listen port (Apify may override via |
| string | — | OAuth app client ID (only if not using PAT). |
| string | — | OAuth app secret (secret input). |
| string | — | Must match Figma app redirect URI exactly. |
| string | — | Optional scope override (comma-separated). |
| integer |
| Reserved / future use. |
| boolean |
| Cache GET responses from Figma. |
Local / CLI input file example (apify run):
{
"figmaAccessToken": "figd_...",
"port": 8080
}HTTP API
Method | Path | Description |
|
| Service info and endpoint list |
|
| Liveness; includes |
|
| MCP JSON-RPC 2.0 (primary transport for this server) |
|
| Start OAuth (browser); disabled if PAT is set |
|
| OAuth redirect handler |
Apify MCP path: .actor/actor.json sets webServerMcpPath to /mcp. Your MCP client URL is typically:
https://<container-id>.runs.apify.net/mcp
(Use the Container URL from the run page + /mcp.)
Cursor IDE
Deploy and start the Actor; copy the run Container URL (while status is RUNNING).
Edit
~/.cursor/mcp.json(paths differ on Windows/Linux — see Cursor docs).
Example (remote HTTP MCP — adjust to your Cursor version’s expected shape):
{
"mcpServers": {
"figma-mcp-standby": {
"url": "https://YOUR_RUN_ID.runs.apify.net/mcp"
}
}
}Notes
env.APIFY_TOKENinmcp.jsonis not passed to this Node process; it does not replace Figma auth. UsefigmaAccessToken(or OAuth) in Actor input.Container URLs are per run and stop working when the run ends; update
mcp.jsonand restart Cursor after a new run.If connection fails, use Cursor → Output → MCP and
curl https://.../health.
Claude Desktop / other clients
Use your client’s supported way to attach a remote MCP URL (e.g. mcp-remote pointing at https://.../mcp). Paths and query params depend on the client version.
Local development
npm install
apify runOr run the entry with Node if you inject env / input yourself:
export FIGMA_ACCESS_TOKEN="figd_..."
node src/main.jsCheck health (port from logs or input):
curl -s http://localhost:8080/health | jq .Sample MCP initialize:
curl -s -X POST http://localhost:8080/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}'Project structure
figma_mcp_actor/
├── .actor/
│ ├── actor.json # Apify Actor metadata (incl. webServerMcpPath: /mcp)
│ ├── input_schema.json
│ ├── output_schema.json
│ └── dataset_schema.json
├── src/
│ ├── main.js # Express app, /mcp, /oauth/*, Apify bootstrap
│ ├── figma/
│ │ ├── auth.js # PAT + OAuth token exchange, refresh, KV hook
│ │ └── client.js # Figma REST wrapper
│ ├── oauth/
│ │ └── persist.js # Apify KV: FIGMA_OAUTH_SESSION
│ ├── mcp/ # Protocol, handlers, server
│ ├── tools/
│ ├── resources/
│ └── prompts/
├── Dockerfile
├── package.json
└── README.mdMCP tools (overview)
Includes (names may vary slightly in code): file analysis (analyze_file, get_file_structure, …), components (list_components, …), export (export_node, …), comments (get_comments, create_comment, …), design modification helpers, plus resources (figma://file/..., etc.) and prompts for common tasks.
Limitations
REST vs Plugin API — deep design writes may need the Plugin API; this Actor uses REST where supported.
Ephemeral Apify URLs — each run has a new base URL unless you use a stable hosting pattern.
OAuth — single stored session per run (KV); not multi-user concurrent OAuth in one process.
Scripts
npm run lint
npm run lint:fix
npm run formatLicense
ISC
Changelog
0.2
Optional OAuth 2.0 (Figma authorization code + refresh); PAT remains default when set.
/oauth/authorizeand/oauth/callback; session persisted in default KV (FIGMA_OAUTH_SESSION).Input:
oauthRedirectUri,oauthScopes.Health JSON:
auth_mode,figma_authenticated.
0.1 / 0.0.1
Initial MCP + Figma REST integration, PAT, long-running server,
/mcpJSON-RPC.
References: Apify Actors · Figma REST API · Model Context Protocol
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.