CC Fig MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_selectionB | Get information about the current selection in Figma |
| get_node_infoB | Get detailed information about a specific node in Figma |
| get_nodes_infoA | Get detailed information about multiple nodes in Figma |
| get_stylesA | Get all styles from the current Figma document |
| get_local_componentsA | Get all local components from the Figma document |
| get_remote_componentsA | Get available components from team libraries in Figma |
| scan_text_nodesB | Scan all text nodes in the selected Figma node |
| join_channelB | Join a specific channel to communicate with Figma |
| export_node_as_imageB | Export a node as an image from Figma |
| create_rectangleB | Create a new rectangle in Figma |
| create_frameC | Create a new frame in Figma |
| create_textC | Create a new text element in Figma |
| create_ellipseC | Create a new ellipse in Figma |
| create_polygonC | Create a new polygon in Figma |
| create_starC | Create a new star in Figma |
| group_nodesC | Group nodes in Figma |
| ungroup_nodesC | Ungroup nodes in Figma |
| clone_nodeB | Clone an existing node in Figma |
| insert_childC | Insert a child node inside a parent node in Figma |
| flatten_nodeC | Flatten a node in Figma (e.g., for boolean operations or converting to path) |
| set_fill_colorA | Set the fill color of a node in Figma. Alpha component defaults to 1 (fully opaque) if not specified. Use alpha 0 for fully transparent. |
| set_stroke_colorC | Set the stroke color of a node in Figma (defaults: opacity 1, weight 1) |
| move_nodeA | Move a node to a new position in Figma |
| resize_nodeC | Resize a node in Figma |
| delete_nodeC | Delete a node from Figma |
| set_corner_radiusA | Set the corner radius of a node in Figma |
| set_auto_layoutC | Configure auto layout properties for a node in Figma |
| set_effectsC | Set the visual effects of a node in Figma |
| set_effect_style_idC | Apply an effect style to a node in Figma |
| get_bound_variablesB | Get all variable bindings for a node. Shows which variables are bound to fills, strokes, and other properties. |
| set_fill_variableA | Bind a color variable to a node's fill. Use this for theme-compatible colors instead of hardcoded RGB values. |
| set_stroke_variableB | Bind a color variable to a node's stroke. Use this for theme-compatible border colors. |
| set_fill_style_idA | Apply a fill style to a node in Figma. Use get_styles to find available fill style IDs. |
| set_stroke_style_idB | Apply a stroke style to a node in Figma. Use get_styles to find available stroke style IDs. |
| set_text_style_idA | Apply a text style to a text node in Figma. Use get_styles to find available text style IDs. |
| resolve_variable_by_nameB | Find a variable ID by its name. Useful for binding variables when you know the semantic name (e.g., 'base-100', 'primary'). |
| clear_variable_bindingA | Remove a variable binding from a node property, reverting to the static value. |
| set_text_contentA | Set the text content of an existing text node in Figma |
| set_multiple_text_contentsC | Set multiple text contents parallelly in a node |
| set_font_nameB | Set the font name and style of a text node in Figma |
| set_font_sizeB | Set the font size of a text node in Figma |
| set_font_weightC | Set the font weight of a text node in Figma |
| set_letter_spacingC | Set the letter spacing of a text node in Figma |
| set_line_heightC | Set the line height of a text node in Figma |
| set_paragraph_spacingB | Set the paragraph spacing of a text node in Figma |
| set_text_caseC | Set the text case of a text node in Figma |
| set_text_decorationC | Set the text decoration of a text node in Figma |
| get_styled_text_segmentsC | Get text segments with specific styling in a text node |
| load_font_asyncC | Load a font asynchronously in Figma |
| create_component_instanceC | Create an instance of a component in Figma |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| design_strategy | Best practices for working with Figma designs |
| read_design_strategy | Best practices for reading Figma designs |
| text_replacement_strategy | Systematic approach for replacing text in Figma designs |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 50 tools
Most tools have distinct purposes targeting specific Figma operations like shape creation, styling, or node management, with clear boundaries. However, some overlap exists, such as set_fill_color, set_fill_style_id, and set_fill_variable, which could cause confusion about when to use each for fill operations, though descriptions help clarify their differences.
Tool names follow a highly consistent verb_noun pattern throughout, such as create_rectangle, get_node_info, and set_font_size. This predictability makes it easy for agents to understand and select tools based on their intended actions and targets in the Figma domain.
With 50 tools, the count is excessive for a typical MCP server, leading to cognitive overload and potential inefficiency. While Figma is a complex domain, this many tools suggests over-fragmentation of operations, such as having multiple separate tools for text styling (e.g., set_font_size, set_font_weight) that could be consolidated.
The tool set provides comprehensive coverage of Figma operations, including CRUD for nodes (create, delete, move, resize), styling (fills, strokes, effects, text properties), component management, variable handling, and utilities like export and grouping. No obvious gaps are present for core design workflows in the domain.