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

@lumeo-ui/mcp-server

v2.0.0-rc.54

Published

Model Context Protocol server for the Lumeo Blazor component library. Lets LLMs (Claude, Copilot, Cursor) author correct Lumeo markup.

Readme

@lumeo-ui/mcp-server

A Model Context Protocol server that exposes the Lumeo Blazor component library to MCP-compatible LLM clients (Claude Desktop, Cursor, GitHub Copilot, Zed, etc.).

Once installed, your LLM can look up real Lumeo parameters, slots, and usage examples — so "build me a sign-in page with Lumeo" produces markup that actually compiles.

What it exposes

The server covers all 125 components from Lumeo's generated registry.json. The top ~35 most-used components ship with rich, hand-curated schemas (parameters, slots, ready-to-use Razor examples, CSS variables); the remaining ~90 are still discoverable and returned with category / description / files / dependencies / CSS variables plus a link back to the docs site for full reference. As more components get curated, the rich count grows automatically.

Tools

  • lumeo_list_components({ category?, query? }) — list all 125 components
  • lumeo_get_component({ name }) — rich schema if curated; thin + docs link otherwise
  • lumeo_search({ query }) — fuzzy search across all 125

Resources

  • lumeo://component/{Name} — markdown reference per component
  • lumeo://category/{Name} — overview of all components in a category

Install

cd tools/lumeo-mcp
npm install
npm run build

This produces dist/index.js, a Node ESM entrypoint.

Future: npx -y @lumeo-ui/mcp-server once published to npm.

Configure your MCP client

Claude Desktop

Edit claude_desktop_config.json (Settings → Developer → Edit Config):

{
  "mcpServers": {
    "lumeo": {
      "command": "node",
      "args": ["C:/Users/bemi/RiderProjects/Lumeo/tools/lumeo-mcp/dist/index.js"]
    }
  }
}

Restart Claude Desktop. You should see the Lumeo tools/resources under the connectors panel.

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "lumeo": {
      "command": "node",
      "args": ["/absolute/path/to/lumeo-mcp/dist/index.js"]
    }
  }
}

VS Code (GitHub Copilot)

Add to .vscode/mcp.json:

{
  "servers": {
    "lumeo": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/lumeo-mcp/dist/index.js"]
    }
  }
}

Try it

After installing, ask your LLM:

Build me a dashboard with three KpiCards using Lumeo.

or

Show me how to build a sign-in page with Lumeo — email, password, and a submit button with validation.

The model will call lumeo_search + lumeo_get_component under the hood and produce markup that uses the correct parameter names, two-way bindings, and slot conventions.

Development

npm run dev   # tsc --watch
npm start     # run the built server

The component catalog is built at startup by merging two sources:

  • src/components.ts — hand-curated rich entries (top ~35) with full params, slots, and example fields
  • src/registry.json — the full 125-component registry, copied from src/Lumeo/registry/registry.json at prebuild time by scripts/sync-registry.mjs

To enrich a thin entry, add a full entry for it in src/components.ts — the merge layer will automatically upgrade it to the rich schema.

License

MIT