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

warpy-iconforge

v1.0.9

Published

CLI tool to install AI-generated icon packs as React components

Readme

IconForge CLI

Install AI-generated icon packs as React components directly into your project.

Installation

You can use IconForge directly with npx (no installation required):

npx iconforge <command>

Or install it globally:

npm install -g iconforge

Quick Start

1. Generate Icons

Visit iconforge.sh and generate your icon pack using AI.

2. Get Your MCP Token

Go to iconforge.sh/mcp-tokens and create an MCP token.

3. Authenticate

npx iconforge auth

Paste your MCP token when prompted.

4. List Your Packages

npx iconforge list

This shows all your available icon packages with their IDs.

5. Install Icons

npx iconforge add <package-id>

The CLI will:

  • Fetch your icons
  • Detect if you're using TypeScript
  • Ask where to save the file
  • Generate a React component file with all your icons

Usage

Commands

| Command | Description | | -------------------- | -------------------------------- | | iconforge auth | Authenticate with your MCP token | | iconforge logout | Remove saved authentication | | iconforge list | List your icon packages | | iconforge add <id> | Install an icon package |

Example Output

The CLI generates a React component file like this:

TypeScript (icons.tsx):

import * as React from "react";

interface IconProps extends React.SVGProps<SVGSVGElement> {
  size?: number | string;
}

export const HomeIcon = ({ size = 24, ...props }: IconProps) => (
  <svg
    width={size}
    height={size}
    viewBox="0 0 24 24"
    fill="none"
    stroke="currentColor"
    strokeWidth="2"
    strokeLinecap="round"
    strokeLinejoin="round"
    {...props}
  >
    <path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" />
  </svg>
);

export const SettingsIcon = ({ size = 24, ...props }: IconProps) => (
  // ...
);

Using the Icons

import { HomeIcon, SettingsIcon } from "./components/icons";

function App() {
  return (
    <div>
      <HomeIcon size={24} className="text-blue-500" />
      <SettingsIcon size={32} />
    </div>
  );
}

Icon Props

All generated icons accept the following props:

| Prop | Type | Default | Description | | ---------- | ------------------ | ------- | -------------------------------------------------------- | | size | number \| string | 24 | Width and height of the icon | | ...props | SVGProps | - | All standard SVG props (className, style, onClick, etc.) |

Configuration

IconForge stores its configuration in ~/.iconforge/config.json.

Custom API URL

For self-hosted instances, you can set a custom API URL:

# The config is stored in ~/.iconforge/config.json
# Edit it to add: "apiUrl": "https://your-instance.com"

Troubleshooting

"Not authenticated" error

Run iconforge auth and enter your MCP token.

"Package not found" error

  • Check that the package ID is correct
  • Packages expire after 7 days - generate new icons if expired
  • Run iconforge list to see available packages

"Token invalid" error

Your token may have expired. Create a new token at iconforge.sh/mcp-tokens and run iconforge auth again.

Requirements

  • Node.js 18 or higher
  • React project (for using generated components)

License

MIT