Skip to main content
Render a Figma node as a PNG screenshot. Returns the image URL. Requires a node ID , use extract_figma_design first to find node IDs.

Tool details

FieldValue
Nameget_figma_image
GroupFigma

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    },
    "figma_url": {
      "type": "string",
      "description": "Figma file URL or file key (e.g., \"https://www.figma.com/design/ABC123/...\")"
    },
    "node_id": {
      "type": "string",
      "description": "Specific node/frame ID (overrides node-id from URL)"
    },
    "scale": {
      "type": "number",
      "description": "Image scale factor (default: 2, range: 0.5-4)"
    }
  },
  "required": [
    "project_reference",
    "figma_url"
  ],
  "additionalProperties": false,
  "description": "Input schema for the get_figma_image tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

This tool does not publish an output schema.