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-tuv-admin-react

v1.1.0

Published

MCP Server for @tuv-indo/admin React component library

Readme

MCP TUV Admin React

MCP (Model Context Protocol) Server untuk @tuv-indo/admin React component library. Server ini membantu AI coding assistant untuk memahami dan menggunakan komponen-komponen @tuv-indo dengan lebih baik.

Features

  • list_components: List semua komponen dengan filter kategori
  • get_component: Detail props, variants, dan contoh penggunaan
  • search_components: Cari komponen berdasarkan keyword
  • suggest_component: Suggest komponen berdasarkan deskripsi UI dari Figma
  • get_component_code: Generate code snippet siap pakai
  • list_icons: List semua nama icon untuk @tuv-indo/icon
  • list_hooks: List semua hook yang tersedia di @tuv-indo/hooks

Installation

Via npx (Recommended)

Tidak perlu install, langsung pakai:

npx mcp-tuv-admin-react

Via npm global

npm install -g mcp-tuv-admin-react
mcp-tuv-admin-react

Configuration

Factory Droid CLI

Tambahkan ke .factory/mcp.json di project Anda:

{
  "mcpServers": {
    "tuv-admin-react": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "mcp-tuv-admin-react"],
      "disabled": false
    }
  }
}

Atau tambahkan via CLI:

droid mcp add tuv-admin-react "npx -y mcp-tuv-admin-react"

Claude Desktop

Tambahkan ke ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "tuv-admin-react": {
      "command": "npx",
      "args": ["-y", "mcp-tuv-admin-react"]
    }
  }
}

VS Code dengan Continue.dev

Tambahkan ke Continue config:

{
  "mcpServers": [
    {
      "name": "tuv-admin-react",
      "command": "npx",
      "args": ["-y", "mcp-tuv-admin-react"]
    }
  ]
}

Tools

list_components

List semua komponen @tuv-indo. Optional filter by category.

{
  "name": "list_components",
  "arguments": {
    "category": "form"
  }
}

Categories: layout, form, feedback, data-display, navigation, other

get_component

Get detail lengkap satu komponen.

{
  "name": "get_component",
  "arguments": {
    "name": "Button"
  }
}

search_components

Cari komponen berdasarkan keyword.

{
  "name": "search_components",
  "arguments": {
    "query": "input"
  }
}

suggest_component

Suggest komponen berdasarkan deskripsi UI.

{
  "name": "suggest_component",
  "arguments": {
    "description": "a clickable button with icon for form submission"
  }
}

get_component_code

Generate code snippet.

{
  "name": "get_component_code",
  "arguments": {
    "name": "Button",
    "props": {
      "variant": "primary",
      "size": "md"
    }
  }
}

list_icons

List semua nama icon.

{
  "name": "list_icons",
  "arguments": {}
}

list_hooks

List semua hook.

{
  "name": "list_hooks",
  "arguments": {}
}

Resources

  • tuv-indo://components - All components data
  • tuv-indo://categories - Component categories
  • tuv-indo://icons - All icon names
  • tuv-indo://hooks - All hook exports

Component Categories

| Category | Components | |----------|-----------| | layout | Box, Flex, Card, Section, etc. | | form | Button, Input, Checkbox, Radio, Dropdown, etc. | | feedback | Alert, Toast, Dialog, Drawer, Progress, etc. | | data-display | Table, Tabs, Accordion, Pagination, etc. | | navigation | Menu, Sidebar, Header |

License

MIT