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

@iyulab/u-widgets-mcp

v0.2.4

Published

MCP server for the u-widgets declarative widget system (uw-* internal prefix)

Readme

@iyulab/u-widgets-mcp

MCP (Model Context Protocol) server for the u-widgets declarative widget system.

Exposes u-widgets' developer tools as MCP tools, enabling AI assistants to create, validate, and suggest data-driven widget specs.

Tools

| Tool | Description | |------|-------------| | help | List available widget types. Filter by name or category. | | template | Generate a minimal, valid widget spec with sample data. | | validate | Check a widget spec for errors and warnings. | | suggest_mapping | Analyze data and suggest the best widget type + mapping. | | auto_spec | Generate a complete spec from raw data (one-call convenience). |

Installation

npm install -g @iyulab/u-widgets-mcp

Or run directly with npx:

npx @iyulab/u-widgets-mcp

Configuration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "u-widgets": {
      "command": "npx",
      "args": ["-y", "@iyulab/u-widgets-mcp"]
    }
  }
}

Claude Code

Add to your .claude/settings.json or project .mcp.json:

{
  "mcpServers": {
    "u-widgets": {
      "command": "npx",
      "args": ["-y", "@iyulab/u-widgets-mcp"]
    }
  }
}

VS Code (Copilot)

Add to .vscode/mcp.json:

{
  "servers": {
    "u-widgets": {
      "command": "npx",
      "args": ["-y", "@iyulab/u-widgets-mcp"]
    }
  }
}

Tool Examples

help

List all widget types:
→ help()

List chart types only:
→ help({ widget: "chart" })

Get details for a specific widget:
→ help({ widget: "chart.bar" })

template

Generate a bar chart template:
→ template({ widget: "chart.bar" })

Result:
{
  "widget": "chart.bar",
  "data": [{ "category": "A", "value": 30 }, ...],
  "mapping": { "x": "category", "y": "value" }
}

validate

Check if a spec is valid:
→ validate({ spec: { "widget": "metric", "data": { "value": 42 } } })

Result:
{ "valid": true, "errors": [], "warnings": [] }

suggest_mapping

Get widget suggestions for your data:
→ suggest_mapping({ data: [{ "name": "A", "value": 30 }, { "name": "B", "value": 70 }] })

Result:
[
  { "widget": "chart.bar", "confidence": 0.9, "mapping": { "x": "name", "y": "value" }, ... },
  { "widget": "chart.line", ... },
  ...
]

auto_spec

Generate a complete spec from data:
→ auto_spec({ data: [{ "quarter": "Q1", "revenue": 100 }, { "quarter": "Q2", "revenue": 150 }] })

Result:
{
  "widget": "chart.bar",
  "data": [{ "quarter": "Q1", "revenue": 100 }, ...],
  "mapping": { "x": "quarter", "y": "revenue" }
}

Development

cd mcp

# Install dependencies
npm install

# Run in development mode
npm run dev

# Run tests
npm test

# Build
npm run build

# Interactive testing with MCP Inspector
npm run inspect

License

MIT