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

@orfium/ictinus-mcp

v0.1.1

Published

MCP server for the Ictinus design system - component APIs, tokens, icons, and docs for AI agents

Readme

@orfium/ictinus-mcp

MCP (Model Context Protocol) server for the Ictinus design system. Gives AI assistants (Cursor, Claude Code, etc.) accurate component metadata, tokens, icons, and docs.

Install

# project
pnpm add -D @orfium/ictinus-mcp

# or run without installing
npx @orfium/ictinus-mcp

After publishing:

{
  "mcpServers": {
    "ictinus": {
      "command": "npx",
      "args": ["-y", "@orfium/ictinus-mcp"]
    }
  }
}

Cursor (local monorepo)

{
  "mcpServers": {
    "ictinus": {
      "command": "npx",
      "args": ["-y", "tsx", "${workspaceFolder}/packages/mcp-server/src/index.ts"]
    }
  }
}

Refresh metadata when APIs/docs change: pnpm --filter @orfium/ictinus-mcp generate. Then toggle the server off/on in Cursor MCP settings.

Tools

| Tool | Purpose | | ------------------- | ----------------------------------------------------------------------- | | search_components | Find components by name, category, or API (vanilla / legacy) | | get_component | Overview (import, examples); optional props search for definitions | | get_patterns | Storybook composition examples (vanilla ranked first) | | get_tokens | Design token maps from @orfium/tokens | | search_icons | Vanilla *Icon components and legacy <Icon name> | | get_guides | Installation, theme, migration, vanilla-vs-legacy |

Agent tips

  1. Prefer @orfium/ictinus/vanilla when both APIs exist.
  2. Call get_guides({ names: "vanilla-vs-legacy getting-started-installation" }) before scaffolding.
  3. Call get_component for overview, then get_component({ props: "…" }) when you need prop types; then get_patterns before composing.
  4. Vanilla components extend Box — use sprinkle layout props / get_tokens for spacing and color.

Development

# from repo root
pnpm install
pnpm --filter @orfium/ictinus-mcp generate   # refresh src/data.json
pnpm --filter @orfium/ictinus-mcp build      # generate + tsc → dist/

Metadata is generated at build time from:

  • Component exports + JSDoc/props in packages/ictinus
  • Storybook MDX guides in apps/storybook/docs
  • CSF stories for usage patterns
  • Token sources in packages/tokens
  • Icon unions in Icon.types.ts

Commit regenerated src/data.json whenever upstream APIs/docs change. The running MCP reloads data.json when its mtime changes; after code changes, restart the MCP server in Cursor.

License

Apache-2.0