cyber-figma
Allows interaction with the Figma REST API, providing tools for accessing and managing Figma design files, comments, variables, webhooks, and other design resources.
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., "@cyber-figmalist the variables in our 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.
cyber-figma
A CLI, a local MCP server, and an agent plugin for the Figma REST API โ built for AI-assisted workflows.
๐ Documentation
CLI โ
cyber-figma <resource> <action>for terminals, scripts, and agents that shell out. Jump to CLI โMCP โ a local stdio server exposing
figma_*tools. Jump to MCP โPlugin โ the published npm package is the plugin root. Jump to plugin โ
Status: scaffolding. The package is not published to npm yet and no commands or tools are implemented. What is finished is the researched Figma surface the implementation is built against โ see Research โ and the documentation site covering authentication, plans, limits, and API coverage.
Installation
npm install -g cyber-figmaRequires Node.js 22 or newer. See the installation guide for the plugin and MCP paths.
Related MCP server: figma-opencode-mcp
Authentication
export FIGMA_ACCESS_TOKEN=<your-personal-access-token>
export FIGMA_TEAM_ID=<team-id> # optional default teamOr pass --token <pat> and --team <id> per command.
Create a token at Settings โ Security โ Generate new token in Figma, choosing scopes at creation time. Figma has three auth modes and they are not interchangeable โ each reaches a different subset of the API:
Personal access token | Plan access token | OAuth 2 | |
Header |
|
|
|
Plan required | none | Organization or Enterprise | none |
Max expiration | 90 days, no rotation | 365 days, refreshable | 90 days, refreshable |
Rate limit counted per | user โ every script shares one budget | token | user, per app |
cyber-figma defaults to a personal access token because it is the only mode covering the
whole surface: plan tokens cannot write comments or variables and cannot call /v1/me, and
OAuth cannot call the Payments API at all.
FIGMA_TEAM_ID exists because Figma provides no way to discover a team ID from a
token โ read it from the segment after /team/ in the team page URL.
Two things that reliably surprise people:
An expired token answers
403, not401. Do not read403as "permission denied" alone.A View or Collab seat gets ~6
GET filecalls per month, on every plan including Enterprise.
Full detail: Authentication ยท Plans and limits.
Keep the token out of ~/.zshrc โ put it in a 0600 file and source that, or read it from
a password manager. Shell profiles are world-readable and are the files most likely to end
up in a dotfiles repo.
CLI
cyber-figma <resource> <action> [options]Global options: --token, --team, --json, --toon (token-efficient
TOON for agents), --full.
No commands are implemented yet. The planned namespace map and the output, pagination, and error conventions are on the CLI overview.
MCP server
A local stdio server, shipped in the same package and calling the same core operations
as the CLI. Tools are named figma_<resource>_<action>.
{
"mcpServers": {
"cyber-figma": {
"command": "node",
"args": ["-e", "import('cyber-figma/mcp')"],
"env": { "FIGMA_ACCESS_TOKEN": "<your-token>" }
}
}
}Set CYBER_FIGMA_MCP_FORMAT=toon for token-efficient output. Per-host wiring for Claude
Desktop, Claude Code, Cursor, Codex, and the MCP Inspector is on the
MCP page.
This is not Figma's own MCP server. Figma ships one that handles its own OAuth flow and is limited to clients in the Figma MCP Catalog; this is a local REST API wrapper using REST API credentials. The two can be installed side by side.
Agent plugin
The published npm package is the plugin root, so installing the plugin gets the skills, the MCP server, and the CLI at once โ no clone to keep in sync.
/plugin marketplace add cyberuni/cyber-figma
/plugin install cyber-figma@cyberuniThe package ships an Agent Plugins 1.0.0
manifest (plugin.json / mcp.json) alongside per-vendor manifests for Claude Code,
Cursor, and Codex.
The spec expands only ${PLUGIN_ROOT} and ${PLUGIN_DATA}, so the portable mcp.json
sets no env block โ a "${FIGMA_ACCESS_TOKEN}" value there would reach the server as
that literal string and shadow the real token. Export the variables in the environment that
launches the agent.
API coverage
The Figma REST API is 53 HTTP operations: 50 in the OpenAPI spec, plus a Discovery endpoint absent from the spec, plus 2 OAuth token endpoints. Only 11 mutate โ comments, reactions, webhooks, variables, and dev resources. Nothing in the REST API creates or deletes files, projects, teams, pages, or nodes; that lives in the Plugin API.
Every endpoint group, its status here, its rate-limit tier, and its plan gate: API coverage.
Research
Figma API facts in this repo are researched, not remembered. Two documents are the source of truth for every claim on the site and in the code:
Document | Covers |
Endpoint inventory, response shapes, the four pagination models, known OpenAPI spec defects, documented gaps | |
Plan and seat gating, the 24 OAuth scopes, rate limits, token lifecycle |
The full research record โ question framing, evidence log with confidence ratings,
contradictions, and recheck triggers โ lives under .research/.
If a fact you need is missing, add it there with a source link rather than inlining it elsewhere.
Contributing
See CONTRIBUTING.md for the development setup and the in-repo MCP server configuration, and AGENTS.md for the architecture and conventions AI coding assistants should follow.
pnpm install
pnpm verify # lint + build + typecheck + test + knip
pnpm web dev # run the documentation site locallyLicense
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
- AlicenseAqualityCmaintenanceWrite-side MCP server for Figma โ build, edit, and search Figma designs from Claude Code, Cursor, Cline, or any MCP client. Complements Figma's official read-only MCP with 41 tools for tree creation, variables, components, and visual verification.411MIT
- AlicenseAqualityBmaintenanceLocal-first MCP server that connects AI coding agents to the currently open Figma file through a local plugin bridge, requiring no Figma API token.8MIT
- 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
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yoโฆ
Real-time chat hub for AI agents โ Claude Code, Cursor, Cline, Codex over MCP or REST.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/cyberuni/cyber-figma'
If you have feedback or need assistance with the MCP directory API, please join our Discord server