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

mcp-pro-ui

v1.1.0

Published

MCP server for @dangbt/pro-ui — lets AI agents (Claude Code, Cursor, Copilot) browse components, get API references, and generate React code

Downloads

495

Readme

mcp-pro-ui

MCP server for @dangbt/pro-ui — lets AI agents (Claude Code, Cursor, Copilot, Windsurf) browse components, get API references, and scaffold React pages.

What it does

When you add mcp-pro-ui to your AI coding tool, the AI can:

  • Discover all 40+ components available in @dangbt/pro-ui
  • Get props API — types, defaults, descriptions for any component
  • Get code examples — ready-to-paste TypeScript/React snippets
  • Search by use case — "I need a data table with server-side pagination"
  • Scaffold pages — generate complete CRUD pages, dashboards, login forms

Setup

Claude Code

claude mcp add mcp-pro-ui -- npx -y mcp-pro-ui

Or add to ~/.claude/settings.json:

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

Cursor

Add to .cursor/mcp.json in your project:

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

Windsurf / Cline

Same npx -y mcp-pro-ui pattern — refer to your tool's MCP docs.

Available tools

| Tool | Description | |------|-------------| | list_components | List all components, optionally filtered by category | | get_component_api | Full props reference for a component | | get_component_example | Copy-paste code example | | search_components | Find components by use case description | | scaffold_page | Generate a complete page (crud-list, crud-form, dashboard, settings, login) |

Example prompts (after adding MCP)

"Show me all form components in pro-ui"
"Give me the ProTable API with all props"
"What component should I use for a confirmation dialog?"
"Scaffold a Users CRUD list page"
"Generate a settings page using pro-ui"

Quick start (manual install)

npm install @dangbt/pro-ui
import { ProTable, ProForm, Layout, Button, Modal, Toast } from '@dangbt/pro-ui'
import { ThemeProvider, ToastProvider } from '@dangbt/pro-ui'

// Wrap your app
function App() {
  return (
    <ThemeProvider defaultTheme="system">
      <ToastProvider />
      <YourApp />
    </ThemeProvider>
  )
}

Components overview

| Category | Components | |----------|------------| | Data | ProTable (server/client-side, filtering, sorting, bulk actions) | | Forms | ProForm, ProFormInput, ProFormSelect, ProFormDatePicker, ProFormTextarea, ProFormSwitch, ProFormCheckbox, ProFormComboBox, ProFormRadioGroup, ProFormAsyncSelect, ProFormNumberField | | Layout | Layout (sidebar + header shell) | | Overlays | Modal, Drawer, Popover, Tooltip, Menu | | Feedback | Toast, Alert, Spinner, Skeleton, ProgressBar, Meter | | Display | Statistic, Steps, Empty, Card, Badge, Avatar, Tabs, Breadcrumbs | | Theme | ThemeProvider, useTheme (light/dark/system) |

Links

License

MIT