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

standby-design-mcp

v0.1.5

Published

MCP server for standby.design — generate production-ready design systems (OKLCH color palettes, fluid type scales, spacing & layout, shape and icon tokens) and export them as CSS, Tailwind v4, or W3C design tokens. Every result links back to the standby.d

Readme

standby-design-mcp

npm MCP Registry License: MIT

MCP server for standby.design — generate and export production-ready design systems directly from Claude (or any MCP client): OKLCH color palettes, fluid type scales, spacing & layout, shape tokens (radii, shadows, glass, neobrutalism) and icon tokens, exportable as CSS custom properties, Tailwind v4 themes, or W3C design tokens (DTCG) — shadcn/ui compatible.

All computation is shared with the standby.design web apps (packages/core + system-react/src/lib), so results are identical to what the UI produces. Every tool returns a shareable standby.design/system URL — open it in the browser to view and fine-tune the system visually; the URL is the state.

Tools

| Tool | Purpose | |------|---------| | generate_color_palette | OKLCH palette from a brand color: 18-step scales, semantic tokens (shadcn/ui compatible), accents, light+dark | | generate_type_scale | Fluid type scale (CSS clamp()), 11 levels, Fontshare fonts, line heights & letter spacing | | generate_shape_tokens | Radii, shadows, borders, focus rings — styles: paper / glass / neomorph / neobrutalism | | generate_icon_tokens | Icon set recommendation/selection + sizing tokens (xs–2xl, stroke) | | generate_space_tokens | Spacing tokens, breakpoints, containers, prose measure, aspect ratios | | get_design_system | Decode any standby.design URL into a full overview | | export_design_system | Full code export: css, tailwind, design-tokens (DTCG), llm-briefing, font-embed | | list_fonts | Fontshare slugs for generate_type_scale |

Each generate_* tool accepts an optional url and only changes its own section, so calls chain: color → type → shape → … accumulate into one URL.

Build

cd packages/mcp-server
npm install
npm run build        # bundles @core + system-react/src/lib into dist/index.js
npm run smoke        # end-to-end protocol test against the built server

Install

Claude Code:

claude mcp add standby-design -- npx -y standby-design-mcp

Claude Desktop — add to claude_desktop_config.json (Settings → Developer → Edit Config), then restart the app:

{
  "mcpServers": {
    "standby-design": {
      "command": "npx",
      "args": ["-y", "standby-design-mcp"]
    }
  }
}

Any other MCP client: run npx -y standby-design-mcp as a stdio server.

Remote (no local install)

A hosted, auth-free endpoint is available at https://mcp.standby.design/mcp (Streamable HTTP, stateless). In Claude: Settings → Connectors → Add custom connector → paste the URL. Privacy: nothing is collected or stored — see https://standby.design/privacy.html.

Example prompts

Build me a design system for a calm fintech product — dark blue brand, sharp corners, corporate icons. Give me the Tailwind tokens.

Generate a color palette from #FF2D9C with vibrant surfaces and lime, cyan and violet accents, then make the shapes neobrutalist.

Here is our design system URL: https://standby.design/system#… — export it as CSS custom properties and explain the semantic tokens.

Make the typography bigger and switch the headings to Clash Display, keep everything else.

Local development

Register your local build instead of the npm package:

claude mcp add standby-design -- node "<absolute-path-to-repo>/packages/mcp-server/dist/index.js"