Skip to main content
Glama
laivannha0202

figma-opencode-mcp

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 npx command — 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 API

See docs/architecture.md for details.

Quick Start

Run the MCP server directly — no clone or local build needed:

npx -y figma-opencode-mcp@latest

Configure OpenCode/Codex

OpenCode:

opencode mcp add figma-opencode-mcp -- npx -y figma-opencode-mcp@latest

Codex:

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 build

Start MCP Server:

# Development mode (hot reload)
npm run dev

# Production mode
node dist/index.js

Local 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)

  1. Build the plugin: npm run build:plugin (skip if using npx — download the plugin from releases)

  2. In Figma: Plugins → Development → Import plugin from manifest

  3. Select plugin/manifest.json

  4. Run the plugin in your Figma file

  5. The plugin will connect to ws://127.0.0.1:3845

  6. Back in OpenCode/Codex, call figma_ping

Tools

Tool

Description

figma_ping

Check connection status

figma_get_selection

Get selected nodes

figma_get_current_page

Get current page info

figma_get_node_tree

Get node tree

figma_export_selection_json

Export as structured JSON

figma_create_frame

Create a frame

figma_create_text

Create a text node

figma_audit_selection

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.md

Security

  • 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 .env with secrets.

See docs/security.md.

Roadmap

v0.2.0 āœ…

  • npm package packaging with npx support

  • --version and --help CLI flags

  • Plugin packaging (plugin.zip)

  • Documentation updates for npx install

v0.3.0

  • figma_extract_design_tokens

  • figma_generate_react_spec

  • figma_compare_code_with_design

  • figma_create_component

  • figma_apply_auto_layout

  • figma_export_svg_png

v0.4.0

  • Integration profile for opencode-power-kit

  • /figma-setup slash command

  • /figma-to-react workflow

  • /figma-audit workflow

  • figma-design-system skill

v1.0.0

  • Stable no-token local bridge

  • Better plugin session management

  • Better schema docs

License

MIT

Available Tools

8 tools
figma_audit_selectionB

Audit the current selection for design system issues (spacing, colors, typography, auto layout, accessibility).

ParametersJSON Schema
NameRequiredDescriptionDefault
checkColorsNoCheck color consistency
checkSpacingNoCheck spacing issues
checkAutoLayoutNoCheck auto-layout usage
checkTypographyNoCheck typography issues
checkAccessibilityNoCheck accessibility issues

TDQS

B3.4/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
xNoX position (default: 0)
yNoY position (default: 0)
fillNoBackground fill color in hex
nameYesFrame name
widthYesFrame width in pixels
heightYesFrame height in pixels
cornerRadiusNoCorner radius

TDQS

B3.2/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
xNoX position (default: 0)
yNoY position (default: 0)
fillNoText fill color in hex
nameNoNode name (default: text content preview)
textYesText content
fontSizeNoFont size in px (default: 16)

TDQS

B3.1/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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).

ParametersJSON Schema
NameRequiredDescriptionDefault
maxDepthNoMax depth (default: 5)
includeStyleNoInclude style properties
includeLayoutNoInclude layout properties
includeChildrenNoInclude children recursively

TDQS

A3.7/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
nodeIdNoNode ID to start from (default: current page)
maxDepthNoMax depth (default: 5)
includeInvisibleNoInclude invisible nodes

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
maxDepthNoMax depth for children (default: 3)
includeChildrenNoInclude children recursively

TDQS

B3.2/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

  1. 8 tool updatesv0.2.2
    • First observedfigma_audit_selection
    • First observedfigma_create_frame
    • First observedfigma_create_text
    • First observedfigma_export_selection_json
    • First observedfigma_get_current_page
    • First observedfigma_get_node_tree
    • First observedfigma_get_selection
    • First observedfigma_ping

TDQS

A3.6/5.0
Disambiguation5/5

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.

Naming Consistency5/5

All tools follow a consistent 'figma_verb_noun' snake_case pattern, making them predictable and easy to navigate.

Tool Count5/5

8 tools is well-scoped for a Figma design assistant, covering essential reading, creation, auditing, and health checking without being excessive.

Completeness3/5

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

ActivityInactive
ResponsivenessSyncing

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

Related MCP Servers

Latest Blog Posts

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