Skip to main content
Glama
mochammad123

MC Figma Bridge

by mochammad123

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
FIGMA_MCP_WS_PORTNoWebSocket port for the Figma MCP bridge. Default is 3055.3055

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
figma_connection_statusA

Return the local WebSocket bridge status and active Figma plugin connection details.

figma_get_document_infoB

Read basic metadata for the active Figma file and current page through the plugin.

figma_get_selectionB

Read the currently selected nodes in the active Figma page.

figma_read_nodeA

Read a Figma node by ID. If nodeId is omitted, reads the first selected node in the active page.

figma_set_textA

Replace the characters of a Figma text node. If nodeId is omitted, uses the first selected node.

figma_create_frameC

Create a frame on the active Figma page and select it.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.4/5.0

Scored across 6 tools

Disambiguation4/5

Tools are mostly distinct: connection status, document info, selection, node read, text set, and frame creation each target a clear purpose. However, figma_get_selection and figma_read_node can both involve reading selected nodes, which may cause slight confusion.

Naming Consistency4/5

Most tools follow a 'figma_verb_noun' pattern (get_document_info, set_text, create_frame), but 'figma_connection_status' deviates from the verb_noun structure, and there is a mix of 'get' and 'read' verbs. Overall, the pattern is still easily recognizable.

Tool Count5/5

Six tools is a well-scoped set for a Figma bridge, covering essential read and write operations without being excessive. Each tool earns its place in the collection.

Completeness3/5

The set covers basic metadata reading, node reading, text editing, and frame creation, but lacks operations like editing other node properties, creating text nodes, or deleting nodes. Agents can handle simple tasks but will hit limitations for broader design manipulation.