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

@totakit/icons-mcp-server

v1.0.0

Published

MCP server for totakit icons — search, retrieve, and embed icons via AI agents

Downloads

83

Readme


A Model Context Protocol server that gives AI agents direct access to the totakit icon library. Search by meaning, retrieve by name, browse by category — every response includes SVG ready to embed.

All icon data is bundled at build time. The server makes zero network calls and works fully offline.

Quick Start

npx @totakit/icons-mcp-server

Configuration

Claude Desktop

{
  "mcpServers": {
    "totakit-icons": {
      "command": "npx",
      "args": ["@totakit/icons-mcp-server"]
    }
  }
}

Kiro

Add to .kiro/settings/mcp.json:

{
  "mcpServers": {
    "totakit-icons": {
      "command": "npx",
      "args": ["@totakit/icons-mcp-server"]
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "totakit-icons": {
      "command": "npx",
      "args": ["@totakit/icons-mcp-server"]
    }
  }
}

Tools

icons_search

Search icons by name, concept, or description.

query:  "arrow"           # Search term
style:  "outline"         # outline | solid | duotone | thin | bold | micro
limit:  5                 # 1–50

Returns matching icons with SVG data, category, tags, CDN URL, and relevance score.

icons_get

Retrieve a specific icon by exact name.

name:   "arrow-right"     # kebab-case icon name
style:  "outline"         # outline | solid | duotone | thin | bold | micro
size:   24                # 8–256 pixels

Returns the icon with SVG at the requested size, all metadata, and available styles.

icons_categories

List all icon categories with counts and example icons.

Returns category names, labels, icon counts, and example icon names.

Styles

Each icon is available in 6 styles:

| Style | Description | |-------|-------------| | Outline | 1.5px stroke — default UI, navigation | | Solid | Filled — buttons, active states | | Duotone | Two-tone — dashboards, illustrations | | Thin | 1.0px stroke — elegant, large sizes | | Bold | 2.0px stroke — small sizes, emphasis | | Micro | Simplified — 12–16px, favicons |

Related

| Repository | Description | |------------|-------------| | @totakit/icons | React components and SVG files | | icons.totakit.com | Browse, search, and preview icons | | @totakit/cli | Command-line interface | | @totakit/sdk | JavaScript/TypeScript SDK |

License

MIT © totakit