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

@kapowaz/design-mcp

v0.1.0

Published

MCP server exposing @kapowaz/components, @kapowaz/design-tokens, and design guidance to coding agents

Readme

@kapowaz/design-mcp

A stdio Model Context Protocol server that exposes the @kapowaz design system — components, design tokens, and design guidance — to coding agents working in other repositories.

It lets an agent in any project ask "what components/tokens are available, and how should I use them?" without the design-system source being present.

What it surfaces

  • Components — every component exported from @kapowaz/components: props, peer-provider requirements, and an example snippet.
  • Tokens — every token from @kapowaz/design-tokens: CSS variable, getDesignTokens() accessor, and literal value.
  • Guidance — the curated convention docs (docs/react/*) plus the package READMEs, with section-level access.

Tools

| Tool | Purpose | | ------------------ | ------------------------------------------------------------- | | list_components | Table of every component in @kapowaz/components. | | get_component | Props, peer requirements, and an example for one component. | | verify_component | Confirm a component is exported and (optionally) its props. | | list_tokens | Token groups (colors, spacing, typography, …) with counts. | | get_token | Resolve a dotted token path to CSS variable, accessor, value. | | list_guidance | Index of the bundled guidance docs. | | get_guidance | Read a doc (optionally a single section, fuzzy-matched). | | search | Fuzzy search across components, tokens, and guidance. |

Consumer setup

Once published, add it to the consuming project's .mcp.json (or your client's equivalent) and let your package manager fetch it:

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

To run it from a local checkout instead (e.g. before a release, or to test unpublished changes), build it and point at the entry directly:

pnpm --filter @kapowaz/design-mcp build   # builds @kapowaz/design-catalog first
{
  "mcpServers": {
    "kapowaz-design": {
      "command": "node",
      "args": [
        "/absolute/path/to/design-system/packages/design-mcp/dist/index.js"
      ]
    }
  }
}

The server reads only its bundled catalog — no network calls, and no file reads against the consuming workspace — so it is safe to run anywhere node is.

How the catalog is built

This package contains no catalog data. It imports the generated JSON from @kapowaz/design-catalog, a workspace dependency whose generators read the monorepo sources (packages/components/, packages/design-tokens/generated/tokens.css, the guidance docs) and emit JSON. Building this package via turbo rebuilds the catalog first.

Development

pnpm --filter @kapowaz/design-mcp build       # tsc; catalog rebuilt via the workspace dep
pnpm --filter @kapowaz/design-mcp typecheck
pnpm --filter @kapowaz/design-mcp test
pnpm --filter @kapowaz/design-mcp start       # run the built server on stdio

Publishing: the first version is bootstrapped by manually publishing a 0.0.0 placeholder (which registers the name on npm and lets npm OIDC trusted publishing be configured); every real release from 0.1.0 onward then ships automatically via Changesets + OIDC. See docs/PUBLISHING.md.