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

supercharged-figma-mcp

v1.0.9

Published

Supercharged Figma MCP Server with full automation support

Downloads

1,024

Readme

Supercharged Figma MCP

English

Supercharged Figma MCP is an MCP Server + Figma Plugin stack that lets agents perform real Figma operations (not read-only).

  • User guide: USER_GUIDE.md
  • Developer guide: DEVELOPER_GUIDE.md

Quick Start

npm install
npm run build
npm run plugin:build
npm run start

Runtime Modes

# local mode (embedded relay + MCP stdio)
node dist/server.js --local

# remote relay mode
node dist/server.js --remote wss://example.com/supercharged-figma/ws

# expose MCP as streamable HTTP
node dist/server.js --local --transport http --host 127.0.0.1 --port 3333 --mcp-path /mcp

npx

npx -y supercharged-figma-mcp --local

MCP Config Examples

{
  "mcpServers": {
    "supercharged-figma": {
      "command": "npx",
      "args": [
        "-y",
        "supercharged-figma-mcp",
        "--local",
        "--relay-host",
        "127.0.0.1",
        "--relay-port",
        "8888"
      ]
    }
  }
}
{
  "mcpServers": {
    "supercharged-figma-http": {
      "url": "https://your-domain.example.com/mcp"
    }
  }
}

Protocol Split

  • MCP Client -> MCP Server: stdio or http/https (Streamable HTTP)
  • Figma Plugin <-> Relay: ws/wss

Project Layout

  • src/: MCP server (TypeScript)
  • figma-plugin/: plugin runtime (code.ts) and UI (ui-enhanced.html)
  • deploy/cloudflare/: Worker deployment template for /mcp and /supercharged-figma/ws

Release

GitHub release is driven by .github/workflows/npm-publish.yml:

  • Publish trigger: push tags matching v* (for example v1.0.4)
  • Manual trigger: workflow_dispatch
  • CI will run build/test checks before npm publish

简体中文

Supercharged Figma MCP 是一个 MCP Server + Figma 插件组合,支持 Agent 对 Figma 进行真实可执行操作。

  • 用户文档:USER_GUIDE.md
  • 开发者文档:DEVELOPER_GUIDE.md

快速开始

npm install
npm run build
npm run plugin:build
npm run start

运行模式

# 本地模式(内嵌 relay + MCP stdio)
node dist/server.js --local

# 远端 relay 模式
node dist/server.js --remote wss://example.com/supercharged-figma/ws

# MCP 以 Streamable HTTP 暴露
node dist/server.js --local --transport http --host 127.0.0.1 --port 3333 --mcp-path /mcp

npx

npx -y supercharged-figma-mcp --local

MCP 配置示例

{
  "mcpServers": {
    "supercharged-figma": {
      "command": "npx",
      "args": [
        "-y",
        "supercharged-figma-mcp",
        "--local",
        "--relay-host",
        "127.0.0.1",
        "--relay-port",
        "8888"
      ]
    }
  }
}
{
  "mcpServers": {
    "supercharged-figma-http": {
      "url": "https://your-domain.example.com/mcp"
    }
  }
}

协议分层

  • MCP Client -> MCP Server:stdiohttp/https(Streamable HTTP)
  • Figma 插件 <-> Relay:ws/wss

发布

GitHub 自动发布由 .github/workflows/npm-publish.yml 处理:

  • 触发方式:推送形如 v* 的 tag(例如 v1.0.4
  • 手动触发:workflow_dispatch
  • 发布流程:CI 先执行构建与测试,再执行 npm publish