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

@webrenew/unicon-mcp-server

v1.1.0

Published

MCP server for Unicon icon library - connects AI assistants to 19,000+ icons

Readme

Unicon MCP Server

Model Context Protocol (MCP) server for the Unicon icon library. Connects AI assistants like Claude and Cursor to 19,000+ icons from 9 popular libraries.

Features

  • 🔍 AI-Powered Search: Semantic search across all icon libraries
  • 🎨 Multiple Formats: Get icons as React, Vue, Svelte, SVG, or JSON
  • 📦 9 Icon Libraries: Lucide, Phosphor, Hugeicons, Heroicons, Tabler, Feather, Remix, Simple Icons, Iconoir
  • Fast: Hosted API with local MCP bridge for optimal performance

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "unicon": {
      "command": "npx",
      "args": ["-y", "@webrenew/unicon-mcp-server"]
    }
  }
}

Config file locations:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Cursor IDE

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "unicon": {
      "command": "npx",
      "args": ["-y", "@webrenew/unicon-mcp-server"]
    }
  }
}

Remote URL (Cloud IDEs & Agents)

For v0, Bolt, Lovable, and other URL-based MCP clients, connect directly via Streamable HTTP:

https://unicon.webrenew.com/api/mcp

No installation required — just add this URL as an MCP server in your tool's settings.

Usage Examples

Once installed, you can ask your AI assistant:

Search for Icons

"Search for arrow icons in the Lucide library"
"Find dashboard-related icons"
"Show me social media icons"

Get Icon Code

"Get the React code for the home icon from Heroicons"
"Give me the SVG for lucide:arrow-right"
"Generate a Vue component for the settings icon"

Get Multiple Icons

"Get React components for home, settings, and user icons from Lucide"
"Give me all the arrow icons from Phosphor as Svelte components"

Available Tools

search_icons

Search through 19,000+ icons using semantic search.

Parameters:

  • query (required): Search query (e.g., "arrow", "dashboard")
  • source (optional): Filter by library (lucide, phosphor, heroicons, etc.)
  • category (optional): Filter by category
  • limit (optional): Max results (default: 20, max: 100)
  • offset (optional): Skip results for pagination (default: 0)

get_icon

Retrieve source code for a specific icon.

Parameters:

  • iconId (required): Icon ID (e.g., "lucide:arrow-right")
  • format (optional): Output format (svg, react, vue, svelte, json) - default: react
  • size (optional): Icon size in pixels - default: 24
  • strokeWidth (optional): Stroke width for outline icons - default: 2

get_multiple_icons

Retrieve multiple icons at once (max 50).

Parameters:

  • iconIds (required): Array of icon IDs
  • format (optional): Output format - default: react
  • size (optional): Icon size - default: 24
  • strokeWidth (optional): Stroke width - default: 2

get_starter_pack

Get a curated starter pack of icons for common use cases.

Parameters:

  • packId (required): Starter pack ID (e.g., "dashboard", "ecommerce", "social", "brand-ai")
  • format (optional): Output format - default: react
  • size (optional): Icon size - default: 24
  • strokeWidth (optional): Stroke width - default: 2

Available Resources

unicon://sources

List all available icon libraries with versions and icon counts.

unicon://categories

List all icon categories for filtering searches.

unicon://stats

Get total icon count and per-library statistics.

unicon://starter_packs

List available starter packs with their icons.

Configuration

Custom API Endpoint

Set a custom API endpoint (useful for development):

{
  "mcpServers": {
    "unicon": {
      "command": "npx",
      "args": ["-y", "@webrenew/unicon-mcp-server"],
      "env": {
        "UNICON_API_URL": "http://localhost:3000/api/mcp"
      }
    }
  }
}

Development

Local Development

# Clone the repo
git clone https://github.com/webrenew/unicon.git
cd unicon/packages/mcp-server

# Install dependencies
npm install

# Build
npm run build

# Test locally
node dist/index.js

Testing with Claude Desktop

  1. Build the package locally
  2. Update your Claude config to use the local version:
{
  "mcpServers": {
    "unicon": {
      "command": "node",
      "args": ["/path/to/unicon/packages/mcp-server/dist/index.js"]
    }
  }
}

Troubleshooting

Server not showing in Claude

  1. Check that your config file is valid JSON
  2. Restart Claude Desktop completely
  3. Check the MCP logs (Help → Developer Tools → Console)

Connection errors

The server requires internet access to connect to the Unicon API at https://unicon.webrenew.com.

Icons not found

Make sure you're using the correct icon ID format: source:icon-name (e.g., lucide:arrow-right).

Use the search_icons tool first to find the exact icon ID.

Support

  • 📖 Quick Start: https://github.com/WebRenew/unicon/blob/main/docs/mcp-quickstart.md
  • 📚 Full Documentation: https://github.com/WebRenew/unicon/blob/main/docs/mcp-integration.md
  • 🐛 Issues: https://github.com/webrenew/unicon/issues
  • 💬 Discussions: https://github.com/webrenew/unicon/discussions

License

MIT © WebRenew