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

@aprila/design-system-mcp

v0.0.1

Published

MCP server for the Aprila design system. Serves component docs, design tokens, and the compiled stylesheet from the deployed Storybook, so agents can build UI with Aprila components — or self-contained prototypes with no install.

Readme

@aprila/design-system-mcp

An MCP server that teaches AI agents the Aprila design system. It reads the component manifests and the compiled stylesheet from the deployed Storybook, so it needs no local checkout of this repo — anyone can run it with npx and point their agent at the live design system.

What it serves

| Tool | What you get | | ----------------- | ----------------------------------------------------------------------------- | | list_components | Every component, grouped by section | | get_component | Props (types, defaults, allowed values), story snippets, import statement | | list_docs | The design-token guideline docs (colors, spacing, typography, radius, …) | | get_doc | One guideline doc in full | | get_stylesheet | The complete compiled @aprila/ui-core CSS, ready to inline into a prototype |

Two consumption modes, both explained to the agent by the tools themselves:

  • In a codebase with @aprila/ui-react installed: use the imports and React examples.
  • Standalone prototypes (plain HTML, claude.ai artifacts, Blazor, …): inline the stylesheet and write markup with each component's root class and data-* attributes — no build, no install.

Setup

The server reads the deployed Storybook origin from APRILA_STORYBOOK_URL.

Claude Desktop — Settings → Developer → Edit Config, add:

{
  "mcpServers": {
    "aprila-design-system": {
      "command": "npx",
      "args": ["-y", "@aprila/design-system-mcp"],
      "env": { "APRILA_STORYBOOK_URL": "https://<storybook-host>" }
    }
  }
}

Claude Code:

claude mcp add aprila-design-system -e APRILA_STORYBOOK_URL=https://<storybook-host> -- npx -y @aprila/design-system-mcp

Any other MCP client with stdio support works the same way.

Development

npm -w @aprila/design-system-mcp run build   # tsc → dist/
npx http-server apps/storybook/storybook-static -p 8787   # serve a local build
APRILA_STORYBOOK_URL=http://127.0.0.1:8787 node packages/design-system-mcp/dist/index.js

The manifests come from @storybook/addon-mcp during npm run build-storybook; the flat stylesheet from apps/storybook/scripts/bundle-css.mjs in the same build.

Publishing

Not yet published. npm publish from this directory once the org scope is set up (prepack builds automatically). Devs working in this repo don't need it — the Storybook dev server exposes the richer official MCP at http://localhost:6006/mcp (docs + dev + test toolsets).