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

@osmansiddiquer/iconify-mcp

v1.0.1

Published

MCP server for accessing Iconify's 200,000+ open source icons

Readme

Iconify MCP Server

An MCP (Model Context Protocol) server that provides AI assistants with access to Iconify's extensive collection of over 200,000 open source vector icons from 200+ icon sets.

Features

  • Get all icon sets: Browse all available icon collections
  • Get specific icon set: Retrieve detailed information about a specific icon set
  • Search icons: Search through icons with flexible query parameters
  • Get icon data: Retrieve specific icon data with usage examples for popular frameworks (React, Vue, Svelte, HTML, CSS)

Installation

npm install
npm run build

Usage

Option 1: Using npx (Recommended)

Add to your Claude Desktop MCP settings configuration:

{
  "mcpServers": {
    "iconify": {
      "command": "npx",
      "args": ["@osmansiddiquer/iconify-mcp"]
    }
  }
}

Option 2: Local Development

Add to your Claude Desktop MCP settings configuration:

{
  "mcpServers": {
    "iconify": {
      "command": "node",
      "args": ["C:\\Users\\osman\\OneDrive\\Desktop\\Work\\Sciloop\\Lab\\iconify-mcp\\dist\\index.js"]
    }
  }
}

MCP Configuration File Location

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

Available Tools

1. get_all_icon_sets

Browse all available icon collections from Iconify.

Parameters: None

Example: Returns list of 200+ icon sets with metadata

2. get_icon_set

Retrieve detailed information about a specific icon set.

Parameters:

  • prefix (string, required): The icon set prefix (e.g., 'mdi', 'fa', 'bi')

Example: { "prefix": "mdi" }

3. search_icons

Search through Iconify's icon collection.

Parameters:

  • query (string, required): Search query (e.g., 'home', 'arrow')
  • prefix (string, optional): Limit search to specific icon set
  • limit (number, optional): Maximum results (default: 64, max: 999)

Example: { "query": "home", "prefix": "mdi", "limit": 10 }

4. get_icon_data

Retrieve specific icon data with framework usage examples.

Parameters:

  • icon (string, required): Full icon name in format 'prefix:icon-name' (e.g., 'mdi:home')

Example: { "icon": "mdi:home" }

Returns icon data and usage examples for React, Vue, Svelte, HTML, and CSS.

Development

npm run dev    # Watch mode
npm run build  # Production build

License

MIT