figma-opencode-mcp
Connects AI coding agents to a locally open Figma file via a plugin bridge, enabling reading selections, exporting JSON, creating frames and text, and auditing design system heuristics.
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-opencode-mcpGet my current selection and export as structured JSON"
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-opencode-mcp
Local-first MCP server for OpenCode/Codex that connects AI coding agents to the currently open Figma file through a local plugin bridge.
No Figma API token required. No Figma REST API in default mode. All communication stays on your machine.
Version: v0.2.2 ā fix docs URL in CLI help. Run with a single npx command.
Key Features
š No Figma API token required in default mode
š No data leaves your machine ā local WebSocket bridge
š Read current selection ā get node data from Figma
š Export selection as JSON ā structured data for design-to-code
āļø Create frames and text ā basic write operations
š Audit selection ā design system heuristics (spacing, typography, layout)
š§© Works with OpenCode and Codex via MCP stdio transport
š¦ Run with a single
npxcommand ā no clone or install needed
Related MCP server: Figma Bridge MCP
Important Limitations
ā ļø This does not magically access any private Figma file by URL.
You still need to open the Figma file in Figma.
You must run the local plugin bridge inside the file.
The plugin can only access what Figma Plugin API allows in the current file/session.
Architecture
OpenCode/Codex ā MCP stdio ā WebSocket (127.0.0.1:3845) ā Plugin UI ā Plugin Main ā Figma APISee docs/architecture.md for details.
Quick Start
Option A: Install with npx (recommended)
Run the MCP server directly ā no clone or local build needed:
npx -y figma-opencode-mcp@latestConfigure OpenCode/Codex
OpenCode:
opencode mcp add figma-opencode-mcp -- npx -y figma-opencode-mcp@latestCodex:
codex mcp add figma-opencode-mcp -- npx -y figma-opencode-mcp@latest.mcp.json (any MCP client):
{
"mcpServers": {
"figma-opencode-mcp": {
"command": "npx",
"args": ["-y", "figma-opencode-mcp@latest"]
}
}
}Note: The npm/npx command only installs the MCP server. You still need to import and run the Figma plugin separately (see step 4).
Option B: Local clone (for development)
git clone <repo-url> figma-opencode-mcp
cd figma-opencode-mcp
npm install
npm run buildStart MCP Server:
# Development mode (hot reload)
npm run dev
# Production mode
node dist/index.jsLocal MCP config:
{
"mcpServers": {
"figma-opencode-mcp": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/figma-opencode-mcp/dist/index.js"]
}
}
}4. Run Figma Plugin (required for both options)
Build the plugin:
npm run build:plugin(skip if using npx ā download the plugin from releases)In Figma: Plugins ā Development ā Import plugin from manifest
Select
plugin/manifest.jsonRun the plugin in your Figma file
The plugin will connect to
ws://127.0.0.1:3845Back in OpenCode/Codex, call
figma_ping
Tools
Tool | Description |
| Check connection status |
| Get selected nodes |
| Get current page info |
| Get node tree |
| Export as structured JSON |
| Create a frame |
| Create a text node |
| Audit for design issues |
See docs/tools.md for detailed documentation.
Example Prompts
Use figma_ping to check connection.
Use figma_get_selection to read my current selected frame.
Use figma_export_selection_json and generate a React/Vite component.
Use figma_audit_selection and suggest design-system improvements.Project Structure
figma-opencode-mcp/
āāā src/ # MCP server source
ā āāā index.ts # Entry point
ā āāā mcp/ # MCP layer (server, tools, schemas, handlers)
ā āāā bridge/ # WebSocket bridge (WS server, client, pending requests)
ā āāā shared/ # Shared types (protocol, errors, logger, serialize)
āāā plugin/ # Figma plugin (manifest, code, UI, types)
āāā docs/ # Documentation
āāā examples/ # MCP config examples
āāā scripts/ # Dev/build/verify scripts
āāā README.mdSecurity
No token, no REST API in default mode.
WebSocket binds only to
127.0.0.1.No data sent to external servers.
No eval or shell execution.
No
.envwith secrets.
See docs/security.md.
Roadmap
v0.2.0 ā
npm package packaging with
npxsupport--versionand--helpCLI flagsPlugin packaging (
plugin.zip)Documentation updates for npx install
v0.3.0
figma_extract_design_tokensfigma_generate_react_specfigma_compare_code_with_designfigma_create_componentfigma_apply_auto_layoutfigma_export_svg_png
v0.4.0
Integration profile for
opencode-power-kit/figma-setupslash command/figma-to-reactworkflow/figma-auditworkflowfigma-design-systemskill
v1.0.0
Stable no-token local bridge
Better plugin session management
Better schema docs
License
MIT
Available Tools
8 toolsfigma_audit_selectionB
Audit the current selection for design system issues (spacing, colors, typography, auto layout, accessibility).
| Name | Required | Description | Default |
|---|---|---|---|
| checkColors | No | Check color consistency | |
| checkSpacing | No | Check spacing issues | |
| checkAutoLayout | No | Check auto-layout usage | |
| checkTypography | No | Check typography issues | |
| checkAccessibility | No | Check accessibility issues |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states the tool 'audits' but does not disclose whether it modifies the selection, requires a specific state, or what the output format is (e.g., list of issues, pass/fail). This leaves significant ambiguity about side effects and behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently communicates the purpose and scope. No unnecessary words or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description should hint at return values or results. It does not explain what the audit produces (e.g., a report, errors, or a score). Additionally, the tool has 5 boolean parameters but no guidance on how they combine or default behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All 5 parameters have descriptions in the schema (100% coverage), so the description adds marginal extra meaning beyond listing the same categories. Baseline 3 is appropriate as the schema already documents the parameters adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool audits the current selection for design system issues, listing specific categories (spacing, colors, typography, auto layout, accessibility). This distinguishes it from siblings like figma_get_selection (which only returns the selection) and figma_export_selection_json (which exports raw data).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when checking design system compliance, but provides no explicit when-to-use or when-not-to-use guidance, nor does it compare with alternatives like figma_get_selection or figma_export_selection_json for similar tasks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
figma_create_frameB
Create a new frame node in the current page.
| Name | Required | Description | Default |
|---|---|---|---|
| x | No | X position (default: 0) | |
| y | No | Y position (default: 0) | |
| fill | No | Background fill color in hex | |
| name | Yes | Frame name | |
| width | Yes | Frame width in pixels | |
| height | Yes | Frame height in pixels | |
| cornerRadius | No | Corner radius |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and description only states basic action. Lacks disclosure of side effects, edge cases, or behavior beyond creation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single, front-loaded sentence with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Tool has 7 parameters (3 required) and no output schema or annotations; description is minimal and does not cover return values or behavior, leaving gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%; description adds no extra meaning beyond schema. Baseline score applied.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb (create), resource (frame node), and location (current page). It distinguishes from sibling tools like figma_create_text.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives, no exclusions or prerequisites mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
figma_create_textB
Create a new text node in the current page.
| Name | Required | Description | Default |
|---|---|---|---|
| x | No | X position (default: 0) | |
| y | No | Y position (default: 0) | |
| fill | No | Text fill color in hex | |
| name | No | Node name (default: text content preview) | |
| text | Yes | Text content | |
| fontSize | No | Font size in px (default: 16) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits. It only states the action without mentioning side effects (e.g., selection change, default styling), return values, or whether the node is immediately visible. Minimal behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence that is front-loaded and clear. No unnecessary words. However, it could include additional context without harming conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 6 parameters and no output schema, the description is insufficient. It does not explain what happens after creation (e.g., returns node ID, modifies selection, default values). Lacks completeness for a creation tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds no additional meaning beyond the schema; it does not explain parameter relationships or provide usage examples. Meets minimum requirement.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'create' and the resource 'text node', and specifies the location 'in the current page'. This distinguishes it from sibling tools like figma_create_frame which creates frames.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like figma_create_frame or how to integrate with other tools. The description lacks context about typical use cases or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
figma_export_selection_jsonA
Export the current selection as structured JSON (geometry, layout, typography, colors, spacing, auto layout).
| Name | Required | Description | Default |
|---|---|---|---|
| maxDepth | No | Max depth (default: 5) | |
| includeStyle | No | Include style properties | |
| includeLayout | No | Include layout properties | |
| includeChildren | No | Include children recursively |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It correctly indicates a read-only operation ('Export'), but it does not disclose behavioral traits such as whether the tool modifies the file, permissions required, rate limits, or what happens with large selections. The list of included properties adds some context but falls short of comprehensive disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that immediately conveys the tool's purpose and output. It front-loads the key action and resource, then efficiently lists the contained data in parentheses. No extraneous words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool (4 optional parameters, no output schema, no annotations), the description is adequate but not thorough. It does not explain the return format structure, error conditions, or the definition of 'current selection'. For a tool with no output schema, some additional context on what the JSON looks like would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage for all four parameters. The tool description does not add additional meaning beyond what the schema already provides; it lists the types of data included (e.g., geometry, layout) which indirectly relates to parameters like includeLayout, but does not explicitly connect them. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Export', the resource 'current selection', and the output format 'structured JSON', followed by a parenthetical list of included properties (geometry, layout, typography, etc.). This specificity distinguishes it from siblings like figma_get_selection, which likely returns raw selection data rather than a structured JSON export.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when you need to export structured JSON of the selection, but it provides no explicit guidance on when to use this tool versus alternatives (e.g., figma_get_selection or figma_get_node_tree), nor does it specify prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
figma_get_current_pageB
Get information about the current page in the active Figma file.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and description does not disclose whether the tool is read-only, what information is returned, or any side effects. It only says 'Get information', which is vague.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no unnecessary words, front-loaded with action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Lacks output schema and description does not specify what information is returned (e.g., page name, dimensions, etc.). Insufficient for a read tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so schema coverage is 100%. Description adds no parameter meaning but baseline is 4 due to absence of parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states verb 'Get' and resource 'current page in the active Figma file', distinguishing it from sibling tools like figma_get_selection or figma_get_node_tree.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives; e.g., no mention that it retrieves page-level metadata as opposed to selection details.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
figma_get_node_treeC
Get the node tree starting from the current page or a specific node.
| Name | Required | Description | Default |
|---|---|---|---|
| nodeId | No | Node ID to start from (default: current page) | |
| maxDepth | No | Max depth (default: 5) | |
| includeInvisible | No | Include invisible nodes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must disclose behavioral traits. It does not explain what happens on invalid nodeId, whether the tree is flat or nested, or any performance implications. The existence of maxDepth and includeInvisible parameters is not mentioned in the description, leaving the agent unaware of these behavioral aspects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with 13 words, front-loading the action. It is concise but could be slightly more informative without adding significant length. No unnecessary words are present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description should explain the return format (e.g., nested JSON structure). It only mentions 'node tree' without specifics. Additionally, there is no mention of error handling, rate limits, or prerequisites. Given the tool has 3 optional parameters, the description is insufficient for complete understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage for parameter descriptions, so the baseline is 3. The description adds value by clarifying that nodeId defaults to the current page, but it does not elaborate on maxDepth or includeInvisible beyond what the schema already provides. Thus, it meets the baseline without exceeding it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the resource 'node tree', and specifies the starting point (current page or specific node). It is distinct from sibling tools like figma_get_current_page or figma_get_selection, which are more specific. However, it could be more explicit about what a node tree represents (hierarchical structure).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as figma_get_current_page or figma_get_selection. The description only states what it does, not the context or conditions for use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
figma_get_selectionB
Get the list of currently selected nodes in the active Figma file.
| Name | Required | Description | Default |
|---|---|---|---|
| maxDepth | No | Max depth for children (default: 3) | |
| includeChildren | No | Include children recursively |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description does not disclose whether this is a read-only operation, whether it requires user selection, or any side effects. It only states the basic purpose.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that is front-loaded with the key action. However, it could be slightly expanded without losing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read operation with two well-documented parameters, the description is adequate but lacks information about the return format. Since there is no output schema, the description should hint at what 'list of nodes' contains.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for both parameters (maxDepth, includeChildren). The description adds no additional meaning beyond the schema, so baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the resource 'currently selected nodes' with context 'in the active Figma file'. This distinguishes it from sibling tools like figma_get_node_tree and figma_get_current_page.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like figma_audit_selection or figma_export_selection_json. There is no mention of prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
figma_pingA
Check if the MCP server is alive and the Figma plugin bridge is connected.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description accurately discloses the tool's read-only, non-destructive behavior. It clearly states it is a connectivity check, which is sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that conveys all necessary information with zero waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity, no output schema, and no parameters, the description fully covers what the tool does and what the agent can expect.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so no additional parameter information is needed. The description implies no input is required, matching the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Check') and resource ('if the MCP server is alive and the Figma plugin bridge is connected'), clearly distinguishing it from sibling tools that perform mutations or exports.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The purpose is self-evident for a health check, and no sibling tool duplicates this function. However, it lacks explicit guidance on when not to use it, though that is not critical here.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
8 tool updates
v0.2.2- First observed
figma_audit_selection - First observed
figma_create_frame - First observed
figma_create_text - First observed
figma_export_selection_json - First observed
figma_get_current_page - First observed
figma_get_node_tree - First observed
figma_get_selection - First observed
figma_ping
TDQS
Each tool has a clearly distinct purpose: ping for health, getters for page/selection/tree, creators for frame/text, audit for design issues, and export for JSON. No overlap.
All tools follow a consistent 'figma_verb_noun' snake_case pattern, making them predictable and easy to navigate.
8 tools is well-scoped for a Figma design assistant, covering essential reading, creation, auditing, and health checking without being excessive.
Missing update/delete operations for nodes, lack of shape variety (only frame and text), and no style manipulation tools, leaving notable gaps for full design workflows.
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 Connectors
The Figma MCP server brings Figma design context directly into your AI workflow.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Nifty's MCP server ā exposes tasks, projects, messages, and files as tools for AI agents.
Official MCP server for Agentwork ā delegate tasks to AI agents with human-in-the-loop
Related MCP Servers
- FlicenseNot gradedqualityAmaintenanceA local MCP server that gives AI agents live access to open Figma files for design handoff and UX writing without API tokens or rate limits.3-
- AlicenseBqualityBmaintenanceLocal MCP server connecting AI clients to the Figma desktop app for inspecting and editing Figma documents via the Plugin API.163761MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that gives AI coding agents access to Figma design data, enabling pixel-perfect implementation of designs through structured data extraction, image downloads, and design token retrieval.541MIT
- AlicenseNot gradedqualityAmaintenanceAn MCP server that enables AI tools to read and write Figma designs via a plugin bridge, bypassing the Figma REST API and rate limits.31MIT
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/laivannha0202/figma-opencode-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server