Figsnap MCP server
The Figma file you have open, as MCP tools. Extract, edit, and keep a saved set.
0 stars39 downloads/wk
Reviews
Write oneNobody has reviewed Figsnap yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Figsnap tools (41, 8 write)
write = sends, deletes, buys or postsRead from the package source without running it. The installed server may list more.
figma_apply_styleApplies a paint, text or effect style from this file by id, from figma_list_library. The right way to make something "match": the layer follows the style afterwards, where a copied hex code does not.
figma_bind_variableBinds a variable from this file to a property, so the value follows the token rather than being a copy of it. Use "fill" or "stroke" for a colour variable; for a number use the property name, like cornerRadius, itemSpacing, paddingLeft, width or opacity.
figma_clone_nodeCopies a node, with everything inside it, into the same parent or one you name. The cheapest way to make a second row, card or list item that matches the first exactly.
figma_component_propertiesThe properties a component, component set or instance has: the variants, and the text, boolean and instance-swap properties, with what this instance currently has them set to.
figma_create_ellipsewrite actionCreates an ellipse. Equal width and height give a circle — an avatar, a dot, a radio button.
figma_create_framewrite actionCreates an empty frame, on the current page or inside a parent you name. Returns the new node’s id so the next call can fill it.
figma_create_instancewrite actionCreates an instance of a component in this file. Get the id from figma_list_library. Naming a variant set places its default variant. Prefer this over drawing a lookalike: an instance keeps its link to the component and updates with it.
figma_create_rectanglewrite actionCreates a rectangle. The workhorse shape: dividers, bars, backgrounds, placeholders. Omit the fill for an empty one.
figma_create_svgwrite actionTurns SVG markup into real Figma vectors — not an image, but editable paths in a frame. This is how to add an icon, a logo or any shape the other create tools cannot express. Extraction returns icons as SVG too, so a shape can be read out of one place and drawn into another unchanged.
figma_create_textwrite actionCreates a TEXT layer with the words you give it. The font is loaded before anything is typed, and a font this machine does not have is refused rather than substituted. Give a width to make it wrap; without one it hugs its text.
figma_delete_nodewrite actionRemoves a node and everything inside it. One undo step, so the designer can take it back with a single Cmd-Z — but say what you are deleting before you do it.
figma_export_pngRenders one node and returns the picture itself, so a model that can see gets to look at the design rather than read a description of it. Nothing is stored anywhere.
figma_extractThe full extraction of one node: HTML measured against what Figma draws, byte-exact figmaCss, a React component, plain CSS and CSS modules. Images are inlined and icons come out as real SVG, so the HTML stands on its own. This is the tool that answers "what does this design actually say".
figma_find_nodesFinds layers by type, by name and by the words in them. Every filter is optional and they narrow together.
figma_get_childrenThe direct children of one node, by id. The cheap way to explore a page a branch at a time.
figma_get_selectionThe layers the designer has selected on the canvas right now, with their ids, names, types and sizes. Start here when the request says "this", "the selected frame", or names nothing at all.
figma_get_treeThe top-level layers of the page the designer is looking at. Increase depth to walk further down, but note that a deep page is thousands of rows: prefer figma_get_children on one branch.
figma_groupgroup — puts nodeIds in a new group, inside the first one’s own parent. ungroup — dissolves a group or frame and returns the children it let go.
figma_insert_imagewrite actionPlaces a PNG, JPG or GIF, passed as base64. With nodeId it becomes that layer’s fill, which is how a placeholder gets its picture; without one it arrives as a new rectangle at its own pixel size.
figma_ios_specOne node and its children as the properties Figma actually holds, in points: per-axis sizing, auto layout with its padding, stroke weight and alignment, corner smoothing, effects, the whole text block, and every fill and stroke marked with whether it is painted.
figma_list_libraryThe components, styles and variables this file has, with the ids the other tools need. Read this before "make it match our button" or "use our brand colour" — instantiating the real component or binding the real variable is what makes a change survive contact with the design system, rather than a hex code that looks right today.
figma_list_savedThe nodes the designer curated in the panel, by folder. A shortlist of what matters in this file, which is usually a better starting point than the whole page.
figma_move_nodeMoves a node into another parent, or to a different position among its siblings. Index 0 is the back of the canvas and the top of a layer list; leaving it out puts the node last.
figma_pageslist — every page in the file, and which is current. open — switch to one, by pageId or by name.
figma_resolve_urlTurns one or more Figma links into the nodes they name, without exporting anything.
figma_save_versionSaves a named point in the file’s version history. Call this before a run that will change several things, so there is one place to fall back to that is not a stack of undos.
figma_savedRead and change the designer’s shortlist of nodes in this file, and the folders it is grouped into. One action argument:
figma_selectSelects one or more layers and scrolls the canvas to them, so the designer is looking at whatever you are talking about. Use it before describing a node you found by walking the tree — pointing is faster than naming an id — and after an edit, so the change is on screen.
figma_set_auto_layoutTurns auto layout on for a frame and sets its direction, spacing, padding and alignment. Pass mode "NONE" to turn it off. Only the properties you name are changed.
figma_set_boundsSets position and size. Position is ignored inside an auto-layout frame, where the parent decides it — use figma_set_layout_sizing and the parent’s spacing there instead.
figma_set_corner_radiusSets one radius for every corner, or each corner on its own.
figma_set_effectsReplaces a node’s effects with the list you give. An empty list clears them. Elevation in most design systems is a drop shadow, so this is what "make it look raised" means.
figma_set_fillReplaces a node’s fills with one solid colour, and answers with the colour read back off the node — so a write that did not land is visible without a screenshot. It replaces every fill the node had, which is worth knowing before pointing it at a gradient or a photograph; the answer names what was there. Borders are strokes, not fills: use figma_set_stroke for those. One call is one undo step, so t
figma_set_instance_propertiesSets which variant an instance is, and the text and booleans its component exposes. Take the keys from figma_component_properties; a key given without its id suffix is matched anyway, and one that matches nothing is refused with the list of what does.
figma_set_layout_sizingHow a child behaves inside an auto-layout frame: HUG shrinks to its contents, FILL stretches to the parent, FIXED keeps its size. This, not figma_set_bounds, is how widths are set inside auto layout.
figma_set_node_nameRenames a layer. Layer names are what the generated code turns into class names, so tidying them is a real change and not cosmetic.
figma_set_strokeReplaces a node’s strokes with one solid colour, and optionally sets the stroke weight. Pass remove: true to take the stroke off entirely. Borders in Figma are strokes, not fills — a row outline or an icon drawn as an outline needs this rather than figma_set_fill.
figma_set_textReplaces the text of one TEXT node. The font is loaded first; a layer whose font is missing from this machine is refused rather than silently retyped in a substitute.
figma_set_text_styleFont, size, line height, letter spacing, alignment and colour, on a TEXT layer. Only what you name is changed. Prefer figma_apply_style where the file has a text style for it — a named style survives a redesign and a hard-coded 14px does not.
figma_set_visibilitySets opacity, visibility and lock. Hidden layers are skipped by extraction, which is often the point.
figsnap_skillWhether this project has the figsnap skill installed, and the skill itself when it does not.
Public scan report
scanner v0.1.9 · 2026-09-20 · same rubric, same numbers if you re-run it
- Code scan15 source files scanned25/25
- –Live reliabilityno gateway calls yet and no remote to proben/a
- –Tool poisoningtools not inspected (local package is not executed); not countedn/a
- Auth qualitystatic API keys via environment variables6/15
- Maintenancelast push 13 days ago15/15
- Maintainer identityregistry namespace matches repository owner; GitHub account older than a year8/10
Install directly
Runs npx -y figsnap-mcp on your machine. Read the scan report first; the gateway never runs local packages.
claude mcp add figsnap-mcp -- npx -y figsnap-mcp
Figsnap: common questions
- Is Figsnap MCP server safe?
- Mostly: it is graded B (83/100). Read the Figsnap safety report
- How do I install Figsnap?
- It runs on your machine. Copy the Claude Code, Claude Desktop or Cursor config from the install section.
- Does Figsnap need an API key?
- Yes. The registry entry asks for
FIGSNAP_MCP_TOKEN. - Is Figsnap maintained?
- The last commit was 13 days ago (2026-09-07). The latest release is v0.2.0.
- What can I use instead of Figsnap?
- Servers from other publishers that do the same job: Pullzip MCP server, PreteWorks API MCP server and Brightdata MCP server. Compare all Figsnap alternatives.
Alternatives to Figsnap
Same job from other publishers: the closest match first, then the best rated.
- PullzipInspect, search and safely extract zip/7z/rar/tar archives; repair garbled CJK file names.not reviewedNewB
- PreteWorks APIOne key for the document-to-web pipeline: scrape, AI-extract, build & edit PDFs, fill forms.not reviewedNewC
- BrightdataBright Data's Web MCP server enabling AI agents to search, extract & navigate the webnot reviewedEstablishedB
- ZenrowsZenrows MCP server — Fetch, Extract, Batch, and Browser Sessions for AI coding assistantsnot reviewedEstablishedA
- pixelpactExtract a visual contract from a reference page and measure an implementation against itnot reviewedGrowingA