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

@lism-css/mcp

v0.20.0

Published

MCP server for lism-css documentation and API reference.

Readme

@lism-css/mcp

English | 日本語

An MCP (Model Context Protocol) server for Lism CSS. Enables AI tools (Claude Code, Cursor, etc.) to accurately reference the latest Lism CSS documentation and API.

Available Tools

| Tool | Description | |------|-------------| | get_overview | Framework overview (architecture, design philosophy, packages, breakpoints, installation guide, CSS Layers) | | get_tokens | List and filter design tokens (colors, spacing, font sizes, shadows, radii, etc.) | | get_props_system | Props system reference — how React/Astro props map to CSS classes and styles. Supports reverse lookup by CSS property name (e.g. paddingp) and Property Class notation (e.g. -g:5) | | get_component | Component details (props, usage examples, sub-component structure). Optionally filter by package (lism-css or @lism-css/ui) | | get_guide | Detailed guide on a specific topic (CSS rules, responsive design, utility classes, module classes, set classes, base styles, etc.) | | search_docs | Full-text documentation search with relevance scoring. Supports category filtering and CSS property name expansion | | convert_css | Convert CSS code to lism-css props and component suggestions. Useful for migrating existing CSS to Lism CSS |

Example Queries

  • "What is the basic architecture of Lism CSS?" → get_overview
  • "Show me the spacing tokens" → get_tokens(category: "spacing")
  • "What do shorthand props like p or fz map to?" → get_props_system(prop: "p")
  • "What does the class -g:5 mean?" → get_props_system(prop: "-g:5")
  • "What CSS property does fz correspond to?" → get_props_system(prop: "font-size")
  • "How do I use the Accordion component?" → get_component(name: "Accordion")
  • "Show me only UI components" → get_component(name: "Accordion", package: "@lism-css/ui")
  • "How does the CSS layer structure work?" → get_guide(topic: "css-rules")
  • "How does responsive design work?" → get_guide(topic: "responsive")
  • "Search only guide docs" → search_docs(query: "responsive", category: "guide")
  • "Convert display: flex; gap: 1rem; to Lism" → convert_css(css: "display: flex; gap: 1rem;")

Setup

Claude Code

claude mcp add lism-css -- npx -y @lism-css/mcp

Cursor

.cursor/mcp.json:

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

Windsurf

.windsurf/mcp.json:

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

VS Code (GitHub Copilot)

.vscode/mcp.json:

{
  "servers": {
    "lism-css": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@lism-css/mcp"]
    }
  }
}