get_node_svg
Extract SVG code from specific design elements in Figma files to use vector graphics in web development and design applications.
Instructions
获取节点的SVG数据
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| url | Yes | Figma文件URL,必须包含node-id参数 | 
Input Schema (JSON Schema)
{
  "properties": {
    "url": {
      "description": "Figma文件URL,必须包含node-id参数",
      "type": "string"
    }
  },
  "required": [
    "url"
  ],
  "type": "object"
}