CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
vkhanhqui avatar

Figma Mcp Go

vkhanhqui/figma-mcp-go
1.1k73 toolsSTDIOregistry active
Summary

This bypasses Figma's REST API rate limits entirely by running a local plugin bridge that exposes 73 read/write operations over stdio. You can create frames, text, and components, bind variables to node properties, set up prototype reactions, manage styles and collections, and even do find-and-replace across text layers. No API token required, which means the free Figma plan works fine. Setup involves adding the server to your MCP config and importing a manifest into Figma Desktop. Best for design automation workflows where you'd otherwise hit the 6 calls per month limit on Starter plans or need programmatic control over layers, auto-layout, and design tokens without dealing with REST quotas.

Install to Claude Code

verified
claude mcp add figma-mcp-go -- npx -y @vkhanhqui/figma-mcp-go

Run in your terminal. Replace YOUR_* placeholders with real values; add --scope user to install for every project.

Review the command, arguments, and environment values before installing — MCP servers run with your local permissions.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →

Tools

Verified live against the running server on Jun 10, 2026.

verified live73 tools
add_pageAdd a new page to the Figma document.2 params

Add a new page to the Figma document.

Parameters* required
indexnumber
Position index to insert the page (0 = first). Defaults to last position.
namestring
Name for the new page (default 'Page')
add_variable_modeAdd a new mode to an existing variable collection (e.g. Light/Dark, Desktop/Mobile). IMPORTANT — Figma free plan only allows 1 mode per collection; calling this tool on a free-plan account will return the error 'Limited to 1 modes only'. If that error occurs, stop retrying and...2 params

Add a new mode to an existing variable collection (e.g. Light/Dark, Desktop/Mobile). IMPORTANT — Figma free plan only allows 1 mode per collection; calling this tool on a free-plan account will return the error 'Limited to 1 modes only'. If that error occurs, stop retrying and...

Parameters* required
collectionId*string
Variable collection ID
modeName*string
Name for the new mode
apply_style_to_nodeApply an existing local style (paint, text, effect, or grid) to a node, linking the node to that style.3 params

Apply an existing local style (paint, text, effect, or grid) to a node, linking the node to that style.

Parameters* required
nodeId*string
Target node ID in colon format e.g. 4029:12345
styleId*string
Style ID to apply (from get_styles)
targetstring
For paint styles only — apply to 'fill' (default) or 'stroke'
batch_rename_nodesRename multiple nodes using find/replace, regex substitution, or prefix/suffix addition.7 params

Rename multiple nodes using find/replace, regex substitution, or prefix/suffix addition.

Parameters* required
findstring
String (or regex pattern when useRegex=true) to search for in the node name
nodeIds*array
Node IDs in colon format e.g. ['4029:12345']
prefixstring
String to prepend to the node name
regexFlagsstring
Regex flags e.g. 'gi' (default 'g'). Only used when useRegex=true.
replacestring
Replacement string. Required when find is provided.
suffixstring
String to append to the node name
useRegexboolean
Treat find as a regular expression (default false)
bind_variable_to_nodeBind a local variable to a node property so the property is driven by the variable's value. COLOR variables: use fillColor or strokeColor. BOOLEAN variables: use visible. FLOAT variables: use opacity, rotation, width, height, cornerRadius, topLeftRadius, topRightRadius, bottom...3 params

Bind a local variable to a node property so the property is driven by the variable's value. COLOR variables: use fillColor or strokeColor. BOOLEAN variables: use visible. FLOAT variables: use opacity, rotation, width, height, cornerRadius, topLeftRadius, topRightRadius, bottom...

Parameters* required
field*string
Property to bind: fillColor | strokeColor | visible | opacity | rotation | width | height | cornerRadius | topLeftRadius | topRightRadius | bottomLeftRadius | bottomRightRadius | strokeWeight | ite...
nodeId*string
Target node ID in colon format e.g. 4029:12345
variableId*string
Variable ID to bind (from get_variable_defs)
clone_nodeClone an existing node, optionally repositioning it or placing it in a new parent.4 params

Clone an existing node, optionally repositioning it or placing it in a new parent.

Parameters* required
nodeId*string
Source node ID in colon format e.g. '4029:12345'
parentIdstring
Parent node ID for the clone. Defaults to same parent as source.
xnumber
X position of the clone
ynumber
Y position of the clone
create_componentConvert an existing FRAME node into a reusable COMPONENT. The frame is replaced in place by the new component.2 params

Convert an existing FRAME node into a reusable COMPONENT. The frame is replaced in place by the new component.

Parameters* required
namestring
Optional name for the component. Defaults to the frame's current name.
nodeId*string
FRAME node ID to convert, in colon format e.g. '4029:12345'
create_effect_styleCreate a new local effect style (drop shadow, inner shadow, or blur).9 params

Create a new local effect style (drop shadow, inner shadow, or blur).

Parameters* required
colorstring
Shadow color as hex e.g. #000000 (default #000000, shadows only)
descriptionstring
Optional style description
name*string
Style name e.g. 'Shadow/Card'
offsetXnumber
Shadow X offset in pixels (default 0, shadows only)
offsetYnumber
Shadow Y offset in pixels (default 4, shadows only)
opacitynumber
Shadow color opacity 0–1 (default 0.25, shadows only)
radiusnumber
Blur radius in pixels (default 8 for shadows, 4 for blurs)
spreadnumber
Shadow spread in pixels (default 0, shadows only)
typestring
Effect type: DROP_SHADOW (default), INNER_SHADOW, LAYER_BLUR, or BACKGROUND_BLUR
create_ellipseCreate a new ellipse (circle/oval) on the current page or inside a parent node.7 params

Create a new ellipse (circle/oval) on the current page or inside a parent node.

Parameters* required
fillColorstring
Fill color as hex e.g. #3B82F6
heightnumber
Height in pixels (default 100)
namestring
Ellipse name
parentIdstring
Parent node ID in colon format. Defaults to current page.
widthnumber
Width in pixels (default 100)
xnumber
X position (default 0)
ynumber
Y position (default 0)
create_frameCreate a new frame on the current page or inside a parent node.19 params

Create a new frame on the current page or inside a parent node.

Parameters* required
counterAxisAlignItemsstring
Cross-axis alignment: MIN, CENTER, MAX, or BASELINE
counterAxisSizingModestring
Cross-axis sizing: FIXED or AUTO (hug)
counterAxisSpacingnumber
Gap between wrapped rows/columns (only when layoutWrap is WRAP)
fillColorstring
Fill color as hex e.g. #FFFFFF
heightnumber
Height in pixels (default 100)
itemSpacingnumber
Auto-layout gap between children
layoutModestring
Auto-layout direction: HORIZONTAL, VERTICAL, or NONE
layoutWrapstring
Wrap behaviour: NO_WRAP or WRAP
namestring
Frame name
paddingBottomnumber
Auto-layout bottom padding
paddingLeftnumber
Auto-layout left padding
paddingRightnumber
Auto-layout right padding
paddingTopnumber
Auto-layout top padding
parentIdstring
Parent node ID in colon format. Defaults to current page.
primaryAxisAlignItemsstring
Main-axis alignment: MIN, CENTER, MAX, or SPACE_BETWEEN
primaryAxisSizingModestring
Main-axis sizing: FIXED or AUTO (hug)
widthnumber
Width in pixels (default 100)
xnumber
X position (default 0)
ynumber
Y position (default 0)
create_grid_styleCreate a new local layout grid style.10 params

Create a new local layout grid style.

Parameters* required
alignmentstring
Alignment: STRETCH (default), CENTER, MIN, or MAX (COLUMNS/ROWS only)
colorstring
Grid line color as hex e.g. #FF0000 (GRID only, default #FF0000)
countnumber
Number of columns or rows (COLUMNS/ROWS only, default 12)
descriptionstring
Optional style description
gutterSizenumber
Gutter size in pixels (COLUMNS/ROWS only, default 16)
name*string
Style name e.g. 'Grid/Desktop'
offsetnumber
Margin/offset in pixels (COLUMNS/ROWS only, default 0)
opacitynumber
Grid line opacity 0–1 (GRID only, default 0.1)
patternstring
Grid pattern: GRID (default), COLUMNS, or ROWS
sectionSizenumber
Grid cell size in pixels (GRID only, default 8)
create_paint_styleCreate a new local paint style with a solid fill color.3 params

Create a new local paint style with a solid fill color.

Parameters* required
color*string
Fill color as hex e.g. #FF5733
descriptionstring
Optional style description
name*string
Style name e.g. 'Brand/Primary'
create_rectangleCreate a new rectangle on the current page or inside a parent node.8 params

Create a new rectangle on the current page or inside a parent node.

Parameters* required
cornerRadiusnumber
Corner radius in pixels
fillColorstring
Fill color as hex e.g. #FF5733
heightnumber
Height in pixels (default 100)
namestring
Rectangle name
parentIdstring
Parent node ID in colon format. Defaults to current page.
widthnumber
Width in pixels (default 100)
xnumber
X position (default 0)
ynumber
Y position (default 0)
create_sectionCreate a Figma Section node on the current page. Sections are the modern way to organize frames and groups on a page.5 params

Create a Figma Section node on the current page. Sections are the modern way to organize frames and groups on a page.

Parameters* required
heightnumber
Height in pixels
namestring
Section name (default 'Section')
widthnumber
Width in pixels
xnumber
X position (default 0)
ynumber
Y position (default 0)
create_textCreate a new text node on the current page or inside a parent node. The font is loaded automatically before insertion. Returns the created node ID and bounds. Use set_text to update the content of an existing text node.9 params

Create a new text node on the current page or inside a parent node. The font is loaded automatically before insertion. Returns the created node ID and bounds. Use set_text to update the content of an existing text node.

Parameters* required
fillColorstring
Text color as hex e.g. #000000 (default black)
fontFamilystring
Font family name e.g. 'Inter', 'Roboto', 'SF Pro Display' (default Inter). Must be a font installed in Figma.
fontSizenumber
Font size in pixels (default 14)
fontStylestring
Font style variant e.g. 'Regular', 'Bold', 'Italic', 'Medium', 'SemiBold' (default Regular). Must match an available style for the chosen fontFamily.
namestring
Node name shown in the layers panel (defaults to the text content)
parentIdstring
Parent node ID in colon format. Defaults to current page.
text*string
Text content to display
xnumber
X position in pixels (default 0)
ynumber
Y position in pixels (default 0)
create_text_styleCreate a new local text style (typography preset). Returns the new style's ID. Apply it to nodes with apply_style_to_node. Use get_styles to list existing text styles.10 params

Create a new local text style (typography preset). Returns the new style's ID. Apply it to nodes with apply_style_to_node. Use get_styles to list existing text styles.

Parameters* required
descriptionstring
Optional human-readable description shown in the Figma style panel
fontFamilystring
Font family name e.g. 'Inter', 'Roboto' (default Inter). Must be installed in Figma.
fontSizenumber
Font size in pixels (default 16)
fontStylestring
Font style variant e.g. 'Regular', 'Bold', 'Medium', 'SemiBold' (default Regular)
letterSpacingUnitstring
Letter spacing unit: PIXELS (default) or PERCENT
letterSpacingValuenumber
Letter spacing value (unit set by letterSpacingUnit)
lineHeightUnitstring
Line height unit: PIXELS (default) or PERCENT
lineHeightValuenumber
Line height value (unit set by lineHeightUnit)
name*string
Style name — use slash notation to organise into groups e.g. 'Heading/H1', 'Body/Regular'
textDecorationstring
Text decoration: NONE (default), UNDERLINE, or STRIKETHROUGH
create_variableCreate a new variable (design token) inside an existing collection. Returns the new variable's ID. Use get_variable_defs to find collection IDs, set_variable_value to set values per mode, and bind_variable_to_node to apply the variable to a node property.4 params

Create a new variable (design token) inside an existing collection. Returns the new variable's ID. Use get_variable_defs to find collection IDs, set_variable_value to set values per mode, and bind_variable_to_node to apply the variable to a node property.

Parameters* required
collectionId*string
ID of the variable collection to add this variable to (from get_variable_defs)
name*string
Variable name — use slash notation to group e.g. 'Color/Primary', 'Spacing/MD'
type*string
Variable type: COLOR (hex color), FLOAT (numeric dimension/spacing), STRING (text), or BOOLEAN (true/false toggle)
valuestring
Initial value for the first mode. COLOR: hex e.g. #FF5733. FLOAT: number e.g. 16. STRING: text. BOOLEAN: true or false.
create_variable_collectionCreate a new local variable collection with an optional initial mode name. NOTE — Figma free plan limits each collection to 1 mode. If you need Light/Dark (or any multi-mode) theming and the user is on the free plan, do NOT try to call add_variable_mode; instead use the name-p...2 params

Create a new local variable collection with an optional initial mode name. NOTE — Figma free plan limits each collection to 1 mode. If you need Light/Dark (or any multi-mode) theming and the user is on the free plan, do NOT try to call add_variable_mode; instead use the name-p...

Parameters* required
initialModeNamestring
Name for the initial mode (default 'Mode 1')
name*string
Collection name
delete_nodesDelete one or more nodes. This cannot be undone via MCP — use with care.1 params

Delete one or more nodes. This cannot be undone via MCP — use with care.

Parameters* required
nodeIds*array
Node IDs to delete in colon format e.g. ['4029:12345']
delete_pageDelete a page from the Figma document. Cannot delete the only remaining page.2 params

Delete a page from the Figma document. Cannot delete the only remaining page.

Parameters* required
pageIdstring
Page node ID in colon format e.g. '0:2'
pageNamestring
Exact page name to delete (alternative to pageId)
delete_styleDelete a style (paint, text, effect, or grid) by its ID.1 params

Delete a style (paint, text, effect, or grid) by its ID.

Parameters* required
styleId*string
Style ID to delete
delete_variableDelete a single variable (provide variableId) or an entire collection and all its variables (provide collectionId). Provide exactly one of the two — not both.2 params

Delete a single variable (provide variableId) or an entire collection and all its variables (provide collectionId). Provide exactly one of the two — not both.

Parameters* required
collectionIdstring
Collection ID to delete (removes all variables in the collection)
variableIdstring
Variable ID to delete
detach_instanceDetach one or more component instances, converting them to plain frames. The link to the main component is broken; all visual properties are preserved.1 params

Detach one or more component instances, converting them to plain frames. The link to the main component is broken; all visual properties are preserved.

Parameters* required
nodeIds*array
INSTANCE node IDs in colon format e.g. ['4029:12345']
export_frames_to_pdfExport multiple frames as a single multi-page PDF file. Each frame becomes one page in order. Ideal for pitch decks, proposals, and slide exports.2 params

Export multiple frames as a single multi-page PDF file. Each frame becomes one page in order. Ideal for pitch decks, proposals, and slide exports.

Parameters* required
nodeIds*array
Ordered list of frame node IDs to export as PDF pages, colon format e.g. '4029:12345'
outputPath*string
File path to write the PDF to, must end in .pdf (relative to working directory or absolute)
export_tokensExport all design tokens (variables and paint styles) as JSON or CSS custom properties. Ideal for bridging Figma variables into your codebase.1 params

Export all design tokens (variables and paint styles) as JSON or CSS custom properties. Ideal for bridging Figma variables into your codebase.

Parameters* required
formatstring
Output format: json (default) or css
find_replace_textFind and replace text content across all TEXT nodes in a subtree. Searches the entire current page if no nodeId is given.5 params

Find and replace text content across all TEXT nodes in a subtree. Searches the entire current page if no nodeId is given.

Parameters* required
find*string
Text string (or regex pattern when useRegex=true) to search for
nodeIdstring
Root node ID to scope the search. Defaults to the entire current page.
regexFlagsstring
Regex flags e.g. 'gi' (default 'g'). Only used when useRegex=true.
replace*string
Replacement string (use empty string to delete matches)
useRegexboolean
Treat find as a regular expression (default false)
get_annotationsGet dev-mode annotations in the current document or scoped to a specific node. Returns annotation objects with label text, measurement type, and the ID of the annotated node. Omit nodeId to retrieve all annotations on the current page.1 params

Get dev-mode annotations in the current document or scoped to a specific node. Returns annotation objects with label text, measurement type, and the ID of the annotated node. Omit nodeId to retrieve all annotations on the current page.

Parameters* required
nodeIdstring
Optional — scope results to annotations on this node and its descendants, colon format e.g. '4029:12345'
get_design_contextGet a depth-limited, token-efficient tree of the current selection or page. Use this instead of get_document when exploring large files. Supports detail levels (minimal/compact/full) and dedupe_components for pages heavy with repeated component instances.3 params

Get a depth-limited, token-efficient tree of the current selection or page. Use this instead of get_document when exploring large files. Supports detail levels (minimal/compact/full) and dedupe_components for pages heavy with repeated component instances.

Parameters* required
dedupe_componentsboolean
When true, INSTANCE nodes are serialized compactly (mainComponentId + componentProperties + overrides array of differing text/nested content) and unique component definitions are collected once in...
depthnumber
How many levels deep to traverse (default 2)
detailstring
Property verbosity: minimal (id/name/type/bounds only), compact (+fills/strokes/opacity), full (everything, default)
get_documentGet the full node tree of the current page (not the whole file — only the active page). Returns all nodes recursively and can be very large. Prefer get_design_context for exploration or when token efficiency matters.

Get the full node tree of the current page (not the whole file — only the active page). Returns all nodes recursively and can be very large. Prefer get_design_context for exploration or when token efficiency matters.

No parameters — call it with no arguments.

get_fontsList all fonts used in the current page, sorted by usage frequency. Useful for understanding typography without scanning all text nodes.

List all fonts used in the current page, sorted by usage frequency. Useful for understanding typography without scanning all text nodes.

No parameters — call it with no arguments.

get_local_componentsGet all components defined in the current Figma file.

Get all components defined in the current Figma file.

No parameters — call it with no arguments.

get_metadataGet metadata about the current Figma document: file name, pages, current page

Get metadata about the current Figma document: file name, pages, current page

No parameters — call it with no arguments.

get_nodeGet a single node by ID with full detail. Use get_nodes_info to fetch multiple nodes in one round-trip instead of calling this repeatedly. Node ID must be colon format e.g. '4029:12345', never hyphens.1 params

Get a single node by ID with full detail. Use get_nodes_info to fetch multiple nodes in one round-trip instead of calling this repeatedly. Node ID must be colon format e.g. '4029:12345', never hyphens.

Parameters* required
nodeId*string
Node ID in colon format e.g. '4029:12345'
get_nodes_infoGet full details for multiple nodes by ID in one round-trip. Prefer this over calling get_node repeatedly when you need several nodes.1 params

Get full details for multiple nodes by ID in one round-trip. Prefer this over calling get_node repeatedly when you need several nodes.

Parameters* required
nodeIds*array
List of node IDs in colon format e.g. ['4029:12345', '4029:67890']
get_pagesList all pages in the document with their IDs and names. Lightweight alternative to get_document.

List all pages in the document with their IDs and names. Lightweight alternative to get_document.

No parameters — call it with no arguments.

get_reactionsGet the prototype reactions defined on a node. Returns an array of reaction objects — each has a trigger (e.g. ON_CLICK, ON_HOVER, AFTER_TIMEOUT) and an actions array (navigate to node, open URL, go back, etc.). Use set_reactions to add or replace reactions, remove_reactions t...1 params

Get the prototype reactions defined on a node. Returns an array of reaction objects — each has a trigger (e.g. ON_CLICK, ON_HOVER, AFTER_TIMEOUT) and an actions array (navigate to node, open URL, go back, etc.). Use set_reactions to add or replace reactions, remove_reactions t...

Parameters* required
nodeId*string
Node ID in colon format e.g. '4029:12345'
get_screenshotExport a screenshot of one or more nodes as base64-encoded image data (held in memory). Use save_screenshots instead when you want to write images directly to disk without base64 in the response.3 params

Export a screenshot of one or more nodes as base64-encoded image data (held in memory). Use save_screenshots instead when you want to write images directly to disk without base64 in the response.

Parameters* required
formatstring
Export format: PNG (default), SVG, JPG, or PDF
nodeIdsarray
Optional node IDs to export, colon format. If empty, exports current selection.
scalenumber
Export scale for raster formats (default 2)
get_selectionGet the nodes currently selected in Figma. Returns an empty array if nothing is selected. Use get_design_context or get_node to retrieve deeper detail about a specific node by ID.

Get the nodes currently selected in Figma. Returns an empty array if nothing is selected. Use get_design_context or get_node to retrieve deeper detail about a specific node by ID.

No parameters — call it with no arguments.

get_stylesGet all local styles in the document (paint, text, effect, and grid). Returns each style's ID, name, type, and properties. Use the style ID with apply_style_to_node or update_paint_style. For design tokens (variables), use get_variable_defs instead.

Get all local styles in the document (paint, text, effect, and grid). Returns each style's ID, name, type, and properties. Use the style ID with apply_style_to_node or update_paint_style. For design tokens (variables), use get_variable_defs instead.

No parameters — call it with no arguments.

get_variable_defsGet all local variable definitions: collections, modes, and values. Variables are Figma's design token system.

Get all local variable definitions: collections, modes, and values. Variables are Figma's design token system.

No parameters — call it with no arguments.

get_viewportGet the current Figma viewport: scroll center, zoom level, and visible bounds.

Get the current Figma viewport: scroll center, zoom level, and visible bounds.

No parameters — call it with no arguments.

group_nodesGroup two or more nodes into a GROUP. All nodes must share the same parent.2 params

Group two or more nodes into a GROUP. All nodes must share the same parent.

Parameters* required
namestring
Optional name for the new group
nodeIds*array
Node IDs to group (minimum 2), in colon format e.g. ['4029:12345', '4029:12346']
import_imageImport a base64-encoded image into Figma as a rectangle with an image fill. Use get_screenshot to capture images or provide your own base64 PNG/JPG.8 params

Import a base64-encoded image into Figma as a rectangle with an image fill. Use get_screenshot to capture images or provide your own base64 PNG/JPG.

Parameters* required
heightnumber
Height in pixels (default 200)
imageData*string
Base64-encoded image data (PNG or JPG)
namestring
Node name
parentIdstring
Parent node ID in colon format. Defaults to current page.
scaleModestring
Image scale mode: FILL (default), FIT, CROP, or TILE
widthnumber
Width in pixels (default 200)
xnumber
X position (default 0)
ynumber
Y position (default 0)
lock_nodesLock one or more nodes to prevent accidental edits in Figma.1 params

Lock one or more nodes to prevent accidental edits in Figma.

Parameters* required
nodeIds*array
Node IDs in colon format e.g. ['4029:12345']
move_nodesMove one or more nodes to an absolute canvas position. The same x/y is applied to every node independently (not a relative offset from current position).3 params

Move one or more nodes to an absolute canvas position. The same x/y is applied to every node independently (not a relative offset from current position).

Parameters* required
nodeIds*array
Node IDs in colon format e.g. ['4029:12345']
xnumber
Target X position
ynumber
Target Y position
navigate_to_pageSwitch the active Figma page. Provide either pageId or pageName.2 params

Switch the active Figma page. Provide either pageId or pageName.

Parameters* required
pageIdstring
Page node ID in colon format e.g. '0:1'
pageNamestring
Exact page name to navigate to
remove_reactionsRemove prototype reactions from a node. Omit indices to remove all reactions. Provide a zero-based indices array to remove specific reactions (use get_reactions first to see current indices).2 params

Remove prototype reactions from a node. Omit indices to remove all reactions. Provide a zero-based indices array to remove specific reactions (use get_reactions first to see current indices).

Parameters* required
indicesarray
Zero-based indices of reactions to remove. Omit or pass [] to remove all.
nodeId*string
Node ID in colon format e.g. '4029:12345'
rename_nodeRename a single node by ID. Returns the updated node with its new name. Use batch_rename_nodes to rename multiple nodes at once or to apply find/replace patterns across many nodes.2 params

Rename a single node by ID. Returns the updated node with its new name. Use batch_rename_nodes to rename multiple nodes at once or to apply find/replace patterns across many nodes.

Parameters* required
name*string
New name for the node. Figma supports slash-separated path notation e.g. 'Icons/Arrow/Left' to organise nodes in component panels.
nodeId*string
Node ID in colon format e.g. '4029:12345'
rename_pageRename an existing page in the Figma document.3 params

Rename an existing page in the Figma document.

Parameters* required
newName*string
New name for the page
pageIdstring
Page node ID in colon format e.g. '0:2'
pageNamestring
Current page name to find (alternative to pageId)
reorder_nodesChange the z-order (layer stack position) of one or more nodes.2 params

Change the z-order (layer stack position) of one or more nodes.

Parameters* required
nodeIds*array
Node IDs in colon format e.g. ['4029:12345']
order*string
Order operation: bringToFront, sendToBack, bringForward, or sendBackward
reparent_nodesMove one or more nodes to a different parent frame, group, or section.2 params

Move one or more nodes to a different parent frame, group, or section.

Parameters* required
nodeIds*array
Node IDs to move in colon format e.g. ['4029:12345']
parentId*string
Target parent node ID in colon format e.g. '4029:99'
resize_nodesResize one or more nodes. The same width/height is applied to every node in the list independently. Provide width, height, or both.3 params

Resize one or more nodes. The same width/height is applied to every node in the list independently. Provide width, height, or both.

Parameters* required
heightnumber
New height in pixels
nodeIds*array
Node IDs in colon format e.g. ['4029:12345']
widthnumber
New width in pixels
rotate_nodesRotate one or more nodes to an absolute angle in degrees.2 params

Rotate one or more nodes to an absolute angle in degrees.

Parameters* required
nodeIds*array
Node IDs in colon format e.g. ['4029:12345']
rotation*number
Rotation angle in degrees (positive = counter-clockwise in Figma)
save_screenshotsExport screenshots for multiple nodes and write them to the local filesystem. Returns file metadata (path, size, dimensions) — no base64 in the response. Use get_screenshot instead when you need the image data in memory.3 params

Export screenshots for multiple nodes and write them to the local filesystem. Returns file metadata (path, size, dimensions) — no base64 in the response. Use get_screenshot instead when you need the image data in memory.

Parameters* required
formatstring
Default export format: PNG (default), SVG, JPG, or PDF
items*array
List of {nodeId, outputPath, format?, scale?} objects
scalenumber
Default export scale for raster formats (default 2)
scan_nodes_by_typesFind all nodes of specific types in a subtree, regardless of name. Use search_nodes instead when you need to filter by name.2 params

Find all nodes of specific types in a subtree, regardless of name. Use search_nodes instead when you need to filter by name.

Parameters* required
nodeId*string
Root node ID to scan from, colon format e.g. '4029:12345'
types*array
Node types to find e.g. ['FRAME', 'COMPONENT', 'INSTANCE']
scan_text_nodesScan all TEXT nodes in a subtree and return their content. Shorthand for scan_nodes_by_types with ['TEXT'] — use when you only need text copy from a component or frame.1 params

Scan all TEXT nodes in a subtree and return their content. Shorthand for scan_nodes_by_types with ['TEXT'] — use when you only need text copy from a component or frame.

Parameters* required
nodeId*string
Root node ID to scan from, colon format e.g. '4029:12345'
search_nodesSearch for nodes by name substring and/or type within a subtree. Use this when you know (part of) the node name. Use scan_nodes_by_types when you want all nodes of a type regardless of name.4 params

Search for nodes by name substring and/or type within a subtree. Use this when you know (part of) the node name. Use scan_nodes_by_types when you want all nodes of a type regardless of name.

Parameters* required
limitnumber
Maximum results to return (default: 50)
nodeIdstring
Scope search to this subtree (default: current page), colon format e.g. '4029:12345'
query*string
Name substring to match (case-insensitive)
typesarray
Filter by Figma node type e.g. ['TEXT', 'FRAME', 'COMPONENT']
set_auto_layoutSet or update auto-layout (flex) properties on an existing frame.13 params

Set or update auto-layout (flex) properties on an existing frame.

Parameters* required
counterAxisAlignItemsstring
Cross-axis alignment: MIN, CENTER, MAX, or BASELINE
counterAxisSizingModestring
Cross-axis sizing: FIXED or AUTO (hug)
counterAxisSpacingnumber
Gap between wrapped rows/columns (only when layoutWrap is WRAP)
itemSpacingnumber
Gap between children
layoutModestring
Auto-layout direction: HORIZONTAL, VERTICAL, or NONE
layoutWrapstring
Wrap behaviour: NO_WRAP or WRAP
nodeId*string
Frame node ID in colon format e.g. '4029:12345'
paddingBottomnumber
Bottom padding
paddingLeftnumber
Left padding
paddingRightnumber
Right padding
paddingTopnumber
Top padding
primaryAxisAlignItemsstring
Main-axis alignment: MIN, CENTER, MAX, or SPACE_BETWEEN
primaryAxisSizingModestring
Main-axis sizing: FIXED or AUTO (hug)
set_blend_modeSet the blend mode of one or more nodes (e.g. MULTIPLY, SCREEN, OVERLAY).2 params

Set the blend mode of one or more nodes (e.g. MULTIPLY, SCREEN, OVERLAY).

Parameters* required
blendMode*string
Blend mode: NORMAL, MULTIPLY, SCREEN, OVERLAY, DARKEN, LIGHTEN, COLOR_DODGE, COLOR_BURN, HARD_LIGHT, SOFT_LIGHT, DIFFERENCE, EXCLUSION, HUE, SATURATION, COLOR, LUMINOSITY, PASS_THROUGH
nodeIds*array
Node IDs in colon format e.g. ['4029:12345']
set_constraintsSet layout constraints (pinning behaviour) on one or more nodes relative to their parent.3 params

Set layout constraints (pinning behaviour) on one or more nodes relative to their parent.

Parameters* required
horizontalstring
Horizontal constraint: MIN (left), MAX (right), CENTER, STRETCH, or SCALE
nodeIds*array
Node IDs in colon format e.g. ['4029:12345']
verticalstring
Vertical constraint: MIN (top), MAX (bottom), CENTER, STRETCH, or SCALE
set_corner_radiusSet corner radius on one or more nodes. Provide a uniform cornerRadius or individual per-corner values.6 params

Set corner radius on one or more nodes. Provide a uniform cornerRadius or individual per-corner values.

Parameters* required
bottomLeftRadiusnumber
Bottom-left corner radius
bottomRightRadiusnumber
Bottom-right corner radius
cornerRadiusnumber
Uniform corner radius applied to all corners
nodeIds*array
Node IDs in colon format e.g. ['4029:12345']
topLeftRadiusnumber
Top-left corner radius
topRightRadiusnumber
Top-right corner radius
set_effectsApply one or more effects (drop shadow, inner shadow, layer blur, background blur) directly to a node. Replaces all existing effects. Pass an empty array to clear all effects.2 params

Apply one or more effects (drop shadow, inner shadow, layer blur, background blur) directly to a node. Replaces all existing effects. Pass an empty array to clear all effects.

Parameters* required
effects*array
Array of effect objects. Each has: type (DROP_SHADOW | INNER_SHADOW | LAYER_BLUR | BACKGROUND_BLUR), radius, color (hex, shadows only), opacity (0–1, shadows only), offsetX, offsetY (shadows only),...
nodeId*string
Target node ID in colon format e.g. 4029:12345
set_fillsSet the fill color on a single node (takes one nodeId, not an array). Use mode='append' to stack a new fill on top of existing fills instead of replacing them.4 params

Set the fill color on a single node (takes one nodeId, not an array). Use mode='append' to stack a new fill on top of existing fills instead of replacing them.

Parameters* required
color*string
Fill color as hex: #RRGGBB e.g. #FF5733 or #RRGGBBAA e.g. #FF573380 for 50% alpha
modestring
'replace' (default) overwrites all existing fills; 'append' stacks this fill on top of existing ones
nodeId*string
Node ID in colon format e.g. '4029:12345'
opacitynumber
Fill opacity 0–1 (default 1). Combines multiplicatively with any alpha in the color hex.
set_opacitySet the opacity of one or more nodes (0 = fully transparent, 1 = fully opaque).2 params

Set the opacity of one or more nodes (0 = fully transparent, 1 = fully opaque).

Parameters* required
nodeIds*array
Node IDs in colon format e.g. ['4029:12345']
opacity*number
Opacity value between 0 and 1
set_reactionsSet prototype reactions on a node. Use mode "replace" (default) to overwrite all reactions, or "append" to add to existing ones. Supported triggers: ON_CLICK, ON_HOVER, ON_PRESS, ON_DRAG, AFTER_TIMEOUT, MOUSE_ENTER, MOUSE_LEAVE, MOUSE_UP, MOUSE_DOWN Supported action types: NOD...3 params

Set prototype reactions on a node. Use mode "replace" (default) to overwrite all reactions, or "append" to add to existing ones. Supported triggers: ON_CLICK, ON_HOVER, ON_PRESS, ON_DRAG, AFTER_TIMEOUT, MOUSE_ENTER, MOUSE_LEAVE, MOUSE_UP, MOUSE_DOWN Supported action types: NOD...

Parameters* required
modestring
"replace" (default) overwrites all existing reactions; "append" adds to them
nodeId*string
Node ID in colon format e.g. '4029:12345'
reactions*array
Array of reaction objects. Each has a 'trigger' and an 'actions' array (plural) of Action objects.
set_strokesSet the stroke color and weight on a single node (takes one nodeId, not an array). Use mode='append' to stack a new stroke on top of existing strokes instead of replacing them.4 params

Set the stroke color and weight on a single node (takes one nodeId, not an array). Use mode='append' to stack a new stroke on top of existing strokes instead of replacing them.

Parameters* required
color*string
Stroke color as hex e.g. #000000
modestring
'replace' (default) overwrites all strokes; 'append' stacks on top of existing strokes
nodeId*string
Node ID in colon format e.g. '4029:12345'
strokeWeightnumber
Stroke weight in pixels (default 1)
set_textUpdate the text content of an existing TEXT node.2 params

Update the text content of an existing TEXT node.

Parameters* required
nodeId*string
TEXT node ID in colon format e.g. '4029:12345'
text*string
New text content
set_variable_valueSet a variable's value for a specific mode.3 params

Set a variable's value for a specific mode.

Parameters* required
modeId*string
Mode ID within the collection
value*string
Value to set. COLOR: hex e.g. #FF5733. FLOAT: number e.g. 16. STRING: text. BOOLEAN: true or false.
variableId*string
Variable ID
set_visibleShow or hide one or more nodes by setting their visibility.2 params

Show or hide one or more nodes by setting their visibility.

Parameters* required
nodeIds*array
Node IDs in colon format e.g. ['4029:12345']
visible*boolean
true to show the node, false to hide it
swap_componentSwap the main component of an existing INSTANCE node, replacing it with a different component while keeping position and size.2 params

Swap the main component of an existing INSTANCE node, replacing it with a different component while keeping position and size.

Parameters* required
componentId*string
Target COMPONENT node ID in colon format (from get_local_components)
nodeId*string
INSTANCE node ID in colon format e.g. 4029:12345
ungroup_nodesUngroup one or more GROUP nodes, moving their children to the parent and removing the group.1 params

Ungroup one or more GROUP nodes, moving their children to the parent and removing the group.

Parameters* required
nodeIds*array
GROUP node IDs in colon format e.g. ['4029:12345']
unlock_nodesUnlock one or more nodes, allowing them to be edited again.1 params

Unlock one or more nodes, allowing them to be edited again.

Parameters* required
nodeIds*array
Node IDs in colon format e.g. ['4029:12345']
update_paint_styleUpdate an existing paint style's name, color, or description. Only paint styles support in-place updates — to modify text, effect, or grid styles, use delete_style and recreate them.4 params

Update an existing paint style's name, color, or description. Only paint styles support in-place updates — to modify text, effect, or grid styles, use delete_style and recreate them.

Parameters* required
colorstring
New fill color as hex e.g. #FF5733
descriptionstring
New style description
namestring
New style name
styleId*string
Paint style ID
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Categories
Design & Creative
Registryactive
Package@vkhanhqui/figma-mcp-go
TransportSTDIO
Prompts12
Tools verifiedJun 10, 2026
UpdatedApr 12, 2026
View on GitHub

Related Design & Creative MCP Servers

View all →
vrun-design avatar
Openflowkit Mcp

io.github.vrun-design/openflowkit-mcp

Local-first OpenFlowKit diagramming tools for Claude, Cursor, Windsurf & other MCP clients.
597
ee0pdt avatar
Godot

ee0pdt/godot-mcp

MCP server enabling two-way communication between AI assistants and Godot for scripts, scenes, nodes, and project resources.
559
zhixiaoqiang avatar
Ant Design Components

zhixiaoqiang/antd-components-mcp

Provides ready-to-query Ant Design component documentation, properties, code examples, and changelogs through an MCP server.
241
matthewdailey avatar
Figma

matthewdailey/figma-mcp

ModelContextProtocol for Figma's REST API
211
dmontgomery40 avatar
MCP 3D Printer Server

dmontgomery40/mcp-3d-printer-server

Connects MCP to major 3D printer APIs (Orca, Bambu, OctoPrint, Klipper, Duet, Repetier, Prusa, Creality). Control prints, monitor status, and perform advanced STL operations like scaling, rotation, sectional editing, and base extension. Includes slicing and visualization.
190
quazaai avatar
Unity MCP Integration

quazaai/unitymcpintegration

Enable AI Agents to Control Unity
154