npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@bromso/figma-mcp

v1.6.0

Published

Bridge between AI MCP clients and Figma. Stdio shim + daemon + bundled bridge plugin.

Readme

@bromso/figma-mcp

MCP server that lets your AI design in Figma.

CI npm version License: MIT Node Bun

figma-mcp is a Model Context Protocol server that bridges any MCP-aware AI client — Claude Code, Claude Desktop, Cursor, Windsurf, VS Code Copilot — to a running Figma instance. Through a bundled Figma plugin it exposes ~25 tools across selection extraction, variable read/write, console capture, and canvas mutation. Designed for developers who use AI coding agents and design in Figma.

Quick start

npx @bromso/figma-mcp setup     # detect AI clients, write MCP configs
# Open Figma desktop and drag-import the bundled plugin
figma-mcp doctor                # verify daemon liveness, plugin pairing, configs

For a step-by-step walkthrough with screenshots, see the quickstart guide. For per-client install instructions, see the client matrix.

Supported AI clients

| Client | Config path | Setup writes | |-------------------|--------------------------------------------------------------------------|-----------------------------| | Claude Code | ~/.claude.json | mcpServers.figma | | Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json* | mcpServers.figma | | Cursor | ~/.cursor/mcp.json | mcpServers.figma | | Windsurf | ~/.codeium/windsurf/mcp_config.json | mcpServers.figma | | VS Code Copilot | ~/Library/Application Support/Code/User/mcp.json* | mcpServers.figma |

* macOS path; Linux uses ~/.config/..., Windows uses %APPDATA%.

figma-mcp setup --client <id> configures one client only. figma-mcp setup --dry-run previews actions without writing. figma-mcp setup --cloud pairs through the optional cloud relay for environments without local IPC.

What's in the box

  • Stdio shim + per-user daemon. First invocation forks a daemon; subsequent AI clients reuse it via Unix socket / named pipe.
  • Bundled bridge plugin. Drag-imported once; pairs over loopback WebSocket. figma-mcp --print-path prints the manifest location for --open-figma to reveal in Finder/Explorer.
  • Optional cloud relay. Cloudflare Worker + Durable Objects + WebSocket Hibernation. Used when the AI client and the Figma user aren't on the same machine.
  • Tool packs. extract (selection, components, variables, styles), variables (read/write/streamed import), console (plugin-sandbox log capture + query), design (canvas mutation: shapes, text, fills, components).
  • figma-mcp doctor. Parallel checks: daemon liveness, plugin pairing, AI-client config drift, recent errors, socket conflicts. --json for machine consumption.

Architecture

AI client (Claude/Cursor/etc.)
        │
        │ stdio MCP
        ▼
   figma-mcp shim ──────► daemon ◄──── shim ◄── another AI client
                            │
                  WebSocket │ (loopback or cloud relay)
                            ▼
                  Bridge plugin (Figma sandbox)
                            │
                  figma.* API calls
                            ▼
                       Figma file

A single daemon multiplexes multiple AI clients onto one bridge-plugin connection. See Architecture for depth.

Project layout

The published artifact is @bromso/figma-mcp from apps/mcp-server. The repo is a Turborepo monorepo with internal packages for protocol, transport, figma-adapter, and tool packs. See CONTRIBUTING.md for the full layout.

Versioning

Releases are managed by Changesets. Every user-facing change adds a changeset; merging to master triggers the release workflow which version-bumps and publishes to npm. See CONTRIBUTING.md.

Links

License

MIT — see LICENSE.