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

vaultcss-mcp

v0.1.4

Published

MCP server for vaultcss ecosystem

Readme

vaultcss-mcp

MCP server for the vaultcss ecosystem — brings setup guides, layer references, and project breakpoints into Claude Code, Cursor, and any MCP-compatible AI editor.

Requirements

  • Node.js: 20.19.0 以上(22.12.0 以上推奨)

Overview

vaultcss-mcp runs as a stdio MCP server. On startup it reads the project's package.json and registers only the tools that match what is installed. If no vault packages are detected, all tools are registered as a fallback.

Available Tools

| Tool | Registered when | Description | |------|-----------------|-------------| | get_setup | vaultcss or vite-plugin-vaultcss | Setup steps, file structure, and the mediaqueries.css marker rule | | get_layers | vaultcss | Layer order (tokensresetbasevendorscomponentsutilities) and when to use each | | get_media_queries_guide | vaultcss or vite-plugin-vaultcss | @custom-media syntax, default breakpoints, and customization | | get_vite_plugin | vite-plugin-vaultcss | vite.config.ts options reference and auto-detection logic | | get_fluid_guide | vaultcss or vite-plugin-vaultcss | fluid() syntax — compiles to clamp() for fluid responsive sizing | | get_vaultscript_libs | vaultscript | Library and utility catalogue with usage examples | | get_breakpoints | always | Reads the project's mediaqueries.css at call time and returns current breakpoints; returns empty if not found |

get_breakpoints scans the filesystem on every call, so it always reflects the latest file contents rather than a startup snapshot.

Setup

Project-local — .mcp.json

Place .mcp.json in the project root. Claude Code and Cursor both pick this up automatically.

Using npx (no installation needed)

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

After installing vaultcss-mcp as a dev dependency (the -y flag is unnecessary)

{
  "mcpServers": {
    "vaultcss": {
      "command": "npx",
      "args": ["vaultcss-mcp"]
    }
  }
}

Claude Desktop — claude_desktop_config.json

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

The config file is located at:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Cursor — global MCP settings

Open Settings → MCP → Add new MCP server and paste:

{
  "vaultcss": {
    "command": "npx",
    "args": ["-y", "vaultcss-mcp"]
  }
}

Installation (optional)

Installing as a dev dependency avoids the npx download on each startup.

npm install -D vaultcss-mcp
# or
pnpm add -D vaultcss-mcp

Then remove -y from the args array in your .mcp.json.

How It Works

  1. On startup, the server reads package.json at process.cwd().
  2. It checks for vaultcss, vite-plugin-vaultcss, and vaultscript in both dependencies and devDependencies.
  3. Only the tools that correspond to installed packages are registered.
  4. If none of the vault packages are found, all tools are registered so you can still explore the docs.

The get_breakpoints tool is the exception: it does not run at startup. Instead, it scans the project tree each time it is called, so the breakpoints it returns are always in sync with your current mediaqueries.css.

License

MIT