figmma
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., "@figmmalist my team projects"
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.
figmma
MCP server for the Figma API with a real-time observability dashboard.
Install
macOS / Linux (checks for Node.js, installs if missing, registers with all agents):
curl -fsSL https://raw.githubusercontent.com/stuffbucket/figmma/main/install.sh | bashWindows (PowerShell):
irm https://raw.githubusercontent.com/stuffbucket/figmma/main/install.ps1 | iexOr via npm (requires Node.js >= 18):
npm install -g @stuffbucket/figmmaThe postinstall script automatically registers figmma with Claude Code, VS Code / GitHub Copilot, and Codex CLI.
Related MCP server: Figma Edit MCP
Configure
Claude Code
Project-level (recommended — runs postinstall automatically):
npm install @stuffbucket/figmmaOr add manually to .mcp.json:
{
"mcpServers": {
"figmma": {
"command": "npx",
"args": ["-y", "@stuffbucket/figmma"]
}
}
}User-level (available in all projects):
claude mcp add --transport stdio figmma --scope user -- npx -y @stuffbucket/figmmaVS Code / GitHub Copilot
Project-level — add to .vscode/mcp.json (created automatically by npm install):
{
"servers": {
"figmma": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@stuffbucket/figmma"]
}
}
}User-level — add to VS Code settings (settings.json):
{
"mcp": {
"servers": {
"figmma": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@stuffbucket/figmma"]
}
}
}
}Codex CLI
Add to .codex/mcp.json (created automatically by npm install):
{
"mcpServers": {
"figmma": {
"command": "npx",
"args": ["-y", "@stuffbucket/figmma"]
}
}
}Setup
On first run with no Figma API token configured, figmma opens a setup wizard in your browser where you enter your Figma Personal Access Token and team URL.
Configuration is stored at:
macOS / Linux:
~/.config/figmma/config.jsonWindows:
%APPDATA%\figmma\config.json
Environment variables FIGMA_API_TOKEN and FIGMA_TEAM_ID override the config file when set in your MCP client's env block.
Tools
Tool | Description |
| Show the authenticated Figma user (cached) |
| Extract file key and node ID from a Figma URL |
| List all projects in a team |
| List all files in a project |
| Get file metadata (name, version, last modified) |
| Search for files by name across all team projects |
| Retrieve all comments and threads on a file |
Dashboard
figmma includes a real-time observability dashboard at http://localhost:5183 that shows:
Live MCP tool calls and Figma API requests
Connection state and auth status
An interactive REPL to test tools from the browser
The dashboard starts automatically when the MCP server launches. Run it standalone with:
npx @stuffbucket/figmma-dashboard # or: npm run dev (in the source repo)Development
git clone https://github.com/stuffbucket/figmma.git
cd figmma
npm ci
npm run dev # Dashboard with Vite HMR
npm run lint # ESLint
npm run typecheck # tsc --noEmit
npm run build # tsc + vite build
npm test # E2E smoke test
make pack # Build + npm pack → figmma-1.0.0.tgzUninstall
npm uninstall -g @stuffbucket/figmmaThis removes the MCP server entries from .mcp.json, .vscode/mcp.json, and .codex/mcp.json.
License
MIT — see LICENSE.
For a visual walkthrough with screenshots, visit the figmma website.
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.
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/stuffbucket/figmma'
If you have feedback or need assistance with the MCP directory API, please join our Discord server