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

@wizeworks/silicaui-mcp

v0.19.0

Published

A local MCP server that lets AI coding assistants query the Silica UI design system — real class names, component props, blocks, and behaviors — instead of guessing.

Downloads

2,891

Readme

@wizeworks/silicaui-mcp

A local MCP server for Silica UI. It gives your AI coding assistant real, extracted-from-source answers about the design system — exact CSS class names, real component props, working usage examples, composed blocks, and the behavior contract — instead of guessing.

Website npm version npm downloads license CI

Why

Every class name, prop, and usage example this server returns is extracted from Silica UI's actual source at release time — never hand-written prose that can drift out of date. list_classes("button") calls the real class generator; get_component("Select") reads the real TypeScript props and a real, working playground demo. If your assistant is about to write <Button intent="primary"> or btn-purple, this catches it before it ships.

Install

Claude Code:

claude mcp add @wizeworks/silicaui -- npx -y @wizeworks/silicaui-mcp

Claude Desktop / other .mcp.json-style clients — add to your MCP config:

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

Cursor — Settings → MCP → Add new MCP server, same command/args as above, or add to .cursor/mcp.json:

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

No API key, account, or network access required after install — everything the server answers with is bundled in the package.

Tools

| Tool | Purpose | | --- | --- | | list_packages | The Silica UI package family, purpose, install command, version. | | list_components({ package? }) | Component names + categories, optionally filtered to one package. | | get_component({ name }) | A component's real props (from source) + a real usage example (from the playground). | | list_classes({ component? }) | Exact, literal CSS class names — extracted from the actual class generators. | | get_tokens() | Semantic color list, light/dark values, typography tokens. | | list_blocks({ category?, tag? }) | Composed page blocks (hero, FAQ, feature grid, …), summary only. | | get_block({ key }) | One block's full node tree. | | list_behaviors() / get_behavior({ type }) | The data-sui-* interactive-behavior contract. | | search_docs({ query }) | Free-text search across components, blocks, and behaviors. |

A note on versioning

This server ships a static catalog, regenerated from the Silica UI monorepo and published in step with the rest of the family. It doesn't read your project's actual installed @wizeworks/silicaui version — for the fast-moving, mostly additive pre-1.0 stage that's a fine trade for zero setup and zero dependency on your project's module resolution. If you're pinned to an older Silica UI version and hit a mismatch, pin @wizeworks/silicaui-mcp to a matching release too.

Links