Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Extracts SVG icons from Figma and generates React TSX icon components automatically, enabling AI assistants like GitHub Copilot and Claude to manage icon workflows.

README.md

figma-svg-to-icon-mcp

An MCP (Model Context Protocol) server that extracts SVG icons from Figma and generates React TSX icon components — automatically, from your AI assistant.

Works with GitHub Copilot, Claude, and any MCP-compatible AI assistant.

Setup

Prerequisites

  • Node.js 18+
  • VS Code with GitHub Copilot (agent mode) or Claude Desktop
  • A Figma personal access token

1. Get a Figma Token

Go to figma.com → Settings → Security → Personal access tokens → Generate new token.

Scopes needed: file_content:read

2. Configure your MCP client

VS Code (.vscode/mcp.json or user settings):

{
 "servers": {
  "figma-svg-to-icon-mcp": {
   "type": "stdio",
   "command": "npx",
   "args": ["-y", "figma-svg-to-icon-mcp"],
   "env": {
    "FIGMA_TOKEN": "figd_your_token_here"
   }
  }
 }
}

Claude Desktop (claude_desktop_config.json):

{
 "mcpServers": {
  "figma-svg-to-icon-mcp": {
   "command": "npx",
   "args": ["-y", "figma-svg-to-icon-mcp"],
   "env": {
    "FIGMA_TOKEN": "figd_your_token_here"
   }
  }
 }
}

Note: Each user needs their own FIGMA_TOKEN. Tokens are tied to Figma account permissions.

What it does

Point it at any Figma node URL and it will:

  1. Fetch the full node tree via Figma REST API (handles deeply nested instances)
  2. Detect icon nodes by name pattern + size
  3. Export clean SVG via Figma's image export API
  4. Check your existing components/icons folder for duplicates (name + path similarity)
  5. Generate .tsx icon components in a consistent format

Generated component format:

interface IconProps {
 className?: string;
}

export default function ArrowRightIcon({ className }: IconProps) {
 return (
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20" fill="none" className={className}>
   <path d="..." stroke="currentColor" strokeWidth="1.66667" strokeLinecap="round" strokeLinejoin="round" />
  </svg>
 );
}

Usage

Once configured, just tell your AI assistant:

Extract all icons from this Figma node and save new ones to my icons folder.

figma_url: https://www.figma.com/design/FILEID/Name?node-id=1234-5678
icons_dir: /absolute/path/to/your/project/src/components/icons

Options

| Parameter | Description | Default | | --------------- | ----------------------------------------------------------- | -------- | | figma_url | Figma node URL with node-id | required | | icons_dir | Absolute path to icons folder | required | | dry_run | Preview without writing files | false | | copy_existing | Write similar icons with -copy suffix instead of skipping | false |

Dry run (preview only)

Extract icons — dry run only, don't write files.

figma_url: https://www.figma.com/design/xxx?node-id=1234-5678
icons_dir: /Users/you/project/src/components/icons
dry_run: true

Convert a single SVG

Convert this SVG to an icon component and save it.

icon_name: arrow-right
icons_dir: /Users/you/project/src/components/icons
svg_code: <svg viewBox="0 0 24 24">...</svg>

How icon detection works

Icons are identified by:

  • Type: INSTANCE, COMPONENT, VECTOR, or BOOLEAN_OPERATION
  • Name: kebab-case pattern — wallet-03, arrow-right, x-close
  • Excluded: Frame 123, Group, Solid, Bold, Featured icon
  • Size: Square dimensions in common icon sizes: 12, 14, 16, 18, 20, 24, 28, 32, 36, 40, 48, 64px

Duplicate detection

Before writing a file, the server checks your existing icons folder using:

  1. Name similarity — fuzzy match on component name (70%+ threshold)
  2. SVG path similarity — Jaccard similarity on path data (85%+ threshold)

If either matches, the icon is skipped (or written with -copy suffix if copy_existing: true).

Tools

| Tool | Description | | -------------------------- | ------------------------------------------- | | extract_icons_from_figma | Main tool — extracts icons from a Figma URL | | svg_to_icon | Convert a raw SVG string to a TSX component |

Contributing

Issues and PRs welcome at https://github.com/Pruthvik1/figma-svg-to-icon-mcp.

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.