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

@iflow-mcp/shedytee-mcp-figma-augmentcode-integration

v1.0.1

Published

Figma MCP Server integration for Augment Code

Readme

🚀 Figma MCP Server + Augment Code Integration

Easier option now available here: https://github.com/shedytee/Figma-MCP-Augment-Code-Guide-Local-HTTP-mode-/blob/main/README.md

GitHub license GitHub issues GitHub stars

This project shows how to connect a Model Context Protocol (MCP) server to the Figma API and integrate it with Augment Code to supercharge your development workflow.


✨ Features

✅ Builds an MCP server that:

  • Queries Figma files
  • Exposes Figma data to an MCP-compatible interface
  • Integrates into Augment Code as a custom tool

✅ Uses:


📦 Setup Instructions

  1. Clone the repository

    git clone https://github.com/shedytee/mcp-figma-augmentcode-integration.git
    cd mcp-figma-augmentcode-integration
  2. Install dependencies

    Install the required NPM packages:

    npm install @modelcontextprotocol/sdk figma-js zod dotenv
  3. Configure environment variables

    cp .env.example .env

    Fill in:

    • FIGMA_TOKEN → your Figma API token
    • FIGMA_FILE_ID → your Figma file ID
    • MCP_PORT → usually 3000
  4. Update package.json

    In your package.json, add "type": "module" at the top level and a start:mcp script under "scripts":

    {
      "name": "mcp-figma-augmentcode-integration",
      "version": "1.0.0",
    + "type": "module",
      "scripts": {
        "start:mcp": "node figma-mcp-server.js"
      },
      "dependencies": {
        "@modelcontextprotocol/sdk": "^1.17.1",
        "figma-js": "^1.16.1-0",
        "zod": "^3.25.76",
        "dotenv": "^17.2.1"
      }
    }
  5. Add startup log to figma-mcp-server.js

    Ensure your script ends with a console message so you see startup success. For example, after connecting:

    const transport = new StdioServerTransport();
    await server.connect(transport);
    + console.log(`MCP Server running on port ${MCP_PORT}`);
  6. Run the MCP server

    npm run start:mcp

    You should see:

    MCP Server running on port 3000

⚙️ Connect to Augment Code

  1. Open Augment Code → Workspace Settings → MCP

  2. Add a new MCP server:

    • Name: figma
    • Command:
      node figma-mcp-server.js
      (runs from your workspace root)
  3. Under Environment Variables, add:

    • FIGMA_TOKEN
    • FIGMA_FILE_ID
    • MCP_PORT
  4. Save and toggle ON the “figma” server.
    Look for this in the logs:

    [dotenv@…] injecting env …
    MCP Server running on port 3000

    Once you see it, the icon will turn green.


💬 Example Prompts

See prompts.md for ready-to-use chat prompts. Examples:

  • Ask figma to get the full file data.
  • Use figma to fetch the latest file from the Figma API.
  • Ask figma for details about the component named ButtonPrimary.
  • Use the figma tool to show all components in the design file.

🗂 Example Code

This repo includes figma-mcp-server.js, a working example of the MCP server wired to the Figma API.

To run locally:

npm run start:mcp

⚠ Important Notes

🛡️ Directories with spaces

If your workspace path includes spaces (e.g. My Projects), wrap the command argument in quotes:

node "figma-mcp-server.js"

—or—
Move your project to a path without spaces to avoid quoting:

C:/Users/yourname/Dev/NoSpacesRepo/

🔧 Troubleshooting

See troubleshooting.md for common issues and fixes.


🤝 Contributing

Got ideas, improvements, or questions?
Please open an issue or submit a pull request — contributions are welcome!

See CONTRIBUTING.md for guidelines.


📄 License

This project is licensed under the MIT License.


🌐 Links