figma-mcp-proxy
Provides read-only tools for interacting with the Figma REST API, enabling retrieval of design files, nodes, images, and comments from Figma projects.
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-proxyFetch design context from this Figma file: https://figma.com/file/abc123"
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-proxy
A small, read-only MCP compatibility proxy for Figma's REST API. It is intended for MCP clients that cannot complete the official Figma remote MCP OAuth flow.
This is not the official Figma MCP server. It returns raw Figma REST API data and does not provide Figma's generated framework code, design-system search, or write-to-canvas tools.
Requirements
Node.js 18.18 or newer
A Figma personal access token with the minimum read scopes needed for your files
Create a token in Figma account settings and keep it private. Each user supplies their own token; this project never contains or hosts tokens.
Related MCP server: figma-mcp
Run with npx
Until the package is published to the npm registry, run the public GitHub package directly:
npx --yes --package=github:dgehriger/figma-mcp-proxy -- figma-mcp-proxySet FIGMA_ACCESS_TOKEN in the environment used by your MCP client, then configure the server:
{
"mcpServers": {
"figma": {
"type": "local",
"command": "npx",
"args": [
"--yes",
"--package=github:dgehriger/figma-mcp-proxy",
"--",
"figma-mcp-proxy"
],
"env": {
"FIGMA_ACCESS_TOKEN": "${env:FIGMA_ACCESS_TOKEN}"
}
}
}
}For GitHub Copilot Desktop, the file is %USERPROFILE%\\.copilot\\mcp-config.json. Set the token in the parent process environment before starting Copilot, or replace the environment reference with a locally managed secret mechanism supported by your installation. Do not commit the token to a config file.
Available tools
get_design_context— read a file or selected node from a Figma URL or file keyget_file— read a file documentget_file_nodes— read selected nodesget_images— request rendered image URLsget_comments— read file commentsget_current_user— verify the configured token
Agent guidance
The server sends a generalized Figma inspection workflow in the MCP initialization instructions, so an agent does not need a separate Figma skill to use this proxy correctly. The workflow teaches the agent to:
request a direct design URL or file key and clarify the inspection goal;
discover pages with shallow
get_filecalls before expanding a node tree;inspect targeted pages, sections, and frames with
get_file_nodes;identify concrete
FRAMEnodes before requesting context or images;report node IDs, evidence, ordering, and access limitations; and
avoid requesting credentials through chat.
Clients that support MCP prompts can invoke figma_inspection_workflow with a
goal and optional file URL or node ID. The same guidance is available as the
figma://workflow/inspection resource.
The guidance is intentionally generic. It does not assume a particular Figma team, project naming scheme, browser session, or organization.
Development
npm install
npm test
npm run checkThe package is intentionally read-only. The official Figma remote MCP server remains the better option when a client can complete its OAuth flow.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceUnofficial local MCP bridge for reading the currently open Figma file through a Figma plugin. Provides tools to inspect selection, file info, and export selected nodes as SVG/PNG.MIT
- Alicense-qualityCmaintenanceRead-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.2,114MIT
- Flicense-qualityDmaintenanceMCP server for the Figma API. Lets AI agents fetch designs, nodes, and rendered images from Figma.2,114
- Flicense-qualityCmaintenanceRead-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.
Related MCP Connectors
Mastodon MCP — public Mastodon data via mastodon.social (no auth required)
Brazilian Open Finance MCP — 30+ banks (Itaú, Nubank, etc.) to Claude/Cursor. Read-only.
Reddit MCP — public Reddit data via JSON endpoints (no auth required)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dgehriger/figma-mcp-proxy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server