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

@romkask/paragon-mcp-server

v1.1.0

Published

MCP server for OpenedX Paragon v23 design system documentation

Downloads

355

Readme

Paragon MCP Server

MCP server for the Open edX Paragon design system (v23.x). Gives AI assistants structured access to component documentation — props, events, code examples, and CSS design tokens — so they can write Paragon-based UI code without guessing.

Installation

The quickest way to use this server is via npx (no clone needed):

claude mcp add paragon -- npx -y @romkask/paragon-mcp-server

Or add it manually to your MCP config (~/.claude/settings.json or project .claude/settings.local.json):

{
  "mcpServers": {
    "paragon": {
      "command": "npx",
      "args": ["-y", "@romkask/paragon-mcp-server"]
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | list_components | List all 63 Paragon components with categories, status, and counts | | get_component | Get full details for a component or subcomponent (description, props, events, subcomponents) | | get_component_props | Get all props with types and descriptions | | get_component_events | Get all callback events (onClose, onToggle, etc.) | | list_examples | List available code examples for a component | | get_example | Get the full JSX code for a specific example | | get_components_variables | Get CSS custom properties / design tokens |

Subcomponent Lookup

All 73 subcomponents (e.g., CardGrid, AlertHeading, FormControl, TableRow) are automatically resolved to their parent component. Querying get_component("CardGrid") returns the full Card component info with a note indicating the subcomponent match.

Data Coverage

  • 63 components (Button, Alert, Card, DataTable, Form, Modal, etc.)
  • 73 subcomponents with automatic parent resolution
  • 410 props with types and descriptions
  • 69 events/callbacks
  • 295 live code examples
  • 443 CSS design token variables

Development

git clone https://github.com/RomkaSk/paragon-mcp-server.git
cd paragon-mcp-server
npm install
npm run build     # generates data + bundles with tsup
npm start         # run server
npm run dev       # dev mode with tsx
npm test          # run tests (348 tests covering all components & subcomponents)

License

MIT