shadcn-registry-sync-mcp
Automates shadcn/ui registry maintenance by scanning your project, detecting components and dependencies, and generating a production-ready registry.json with a single AI command.
README
shadcn-registry-sync-mcp ๐
Automate your shadcn/ui registry maintenance with AI-powered precision
โจ Why This Tool?
Tired of manually updating registry.json every time you create a new component?
shadcn-registry-sync-mcp is an intelligent MCP server that automatically scans your project, detects components, analyzes dependencies, and generates a production-ready registry.json โ all with a single command to your AI assistant.
๐ฏ What You Get
| Before | After |
|---|---|
| โ Manual registry updates | โ One-command sync |
| โ Missing dependencies | โ Auto-detected deps |
| โ Inconsistent metadata | โ Smart descriptions |
| โ Error-prone copy-paste | โ 100% automated |
๐ Quick Start
1. Install & Build
yarn install
yarn build
2. Configure Your MCP Client
Add to your MCP configuration (e.g., claude_desktop_config.json):
{
"mcpServers": {
"shadcn-registry-sync": {
"command": "node",
"args": ["/path/to/shadcn-registry-sync-mcp/dist/index.js"],
"cwd": "/path/to/shadcn-registry-sync-mcp"
}
}
}
3. Use with Your AI Assistant
Simply tell your AI:
"Sync my shadcn registry"
Or:
"Update registry.json for my project at /path/to/project"
That's it! โจ
๐ Features
๐ Intelligent Scanning
Automatically discovers components in:
src/components/*โ UI componentssrc/features/*โ Feature modules (layouts, components, models)src/hooks/*โ Custom React hookssrc/lib/*โ Utility librariessrc/types/*โ TypeScript definitions
๐ง Smart Dependency Analysis
// Your component
import { Button } from '@/components/button';
import { Slot } from '@radix-ui/react-slot';
// Auto-detected:
// - registryDependencies: ["@shadcn-ui/button"]
// - dependencies: ["@radix-ui/react-slot"]
๐ Auto-Generated Descriptions
The tool analyzes your source code to generate meaningful descriptions:
// DialogDeleteUser.tsx
/**
* Confirmation dialog for deleting users
*/
export function DialogDeleteUser() { ... }
// โ description: "Confirmation dialog for deleting users"
Pattern Recognition:
dialog-delete-*โ "Confirmation dialog for deleting *"drawer-configure-*โ "Configuration drawer for *"chart-trend-*โ "Trend line chart visualization"*-modelsโ "Data models, types, and API service functions"
๐ฏ shadcn/ui Compatible
Output follows the official shadcn/ui registry schema:
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "shadcn-ui",
"homepage": "https://ui.shadcn.com",
"items": [
{
"name": "button",
"type": "registry:component",
"title": "Button",
"description": "A reusable button component",
"files": [...],
"dependencies": ["@radix-ui/react-slot"],
"registryDependencies": ["@shadcn-ui/icon"]
}
]
}
๐ก Use Cases
For Component Library Maintainers
Keep your registry in sync with zero effort:
Developer: "I just added 5 new components to src/components"
AI: "I'll sync the registry for you."
โ registry.json updated automatically
For Large Projects
Handle complex feature-based architectures:
src/features/
โโโ auth/
โ โโโ components/
โ โ โโโ dialog-login/
โ โ โโโ dialog-otp/
โ โโโ layouts/
โ โ โโโ login-page-layout/
โ โโโ models/
โโโ report/
โโโ components/
โโโ chart-trend-double-line/
โ All detected and categorized correctly
For Teams
Ensure consistent registry structure across the team:
No more:
- "Who forgot to update the registry?"
- "Why are dependencies missing?"
- "Why does this component break when installed?"
๐ ๏ธ Manual Usage
Run standalone without MCP:
# Set project root
export PROJECT_ROOT=/path/to/your/project
# Run sync
node run-local.js
Output:
[run-local] Project root: /path/to/your/project
[run-local] Scanning...
[run-local] Found 42 items
[run-local] Building registry...
[run-local] Written to /path/to/your/project/registry.json
๐ What Gets Synced?
| Type | Directory | Registry Type | Example |
|---|---|---|---|
| Components | src/components/* |
registry:component |
button, card, dialog |
| Blocks | src/features/* |
registry:block |
layouts, multi-file components |
| Hooks | src/hooks/* |
registry:hook |
use-mobile, use-debounce |
| Libraries | src/lib/* |
registry:lib |
utils, axios, storage |
| Types | src/types/*.d.ts |
registry:file |
tanstack-table, zod-schema |
๐ง Configuration
Customize Scan Directories
Edit src/constants.ts:
export const COMPONENT_DIRS = ['src/components', 'src/ui', 'src/shared'];
export const FEATURE_DIR = 'src/features';
export const HOOKS_DIR = 'src/hooks';
export const LIB_DIR = 'src/lib';
export const TYPES_DIR = 'src/types';
Skip Patterns
export const SKIP_FILE_PATTERNS = [
/\.stories\.tsx?$/, // Storybook
/\.test\.tsx?$/, // Tests
/\.spec\.tsx?$/, // Specs
];
export const LIB_SKIP_DIRS = ['storybook', 'docs'];
Dependency Filters
export const FRAMEWORK_DEPS = new Set([
'react',
'react-dom',
'react-router',
// These won't be tracked as dependencies
]);
๐๏ธ Architecture
For detailed architecture documentation, see ARCHITECTURE.md.
Key Modules:
- scanner.ts โ Discovers components in your project
- parser.ts โ Analyzes imports and classifies dependencies
- builder.ts โ Constructs shadcn-compatible registry
- describer.ts โ Generates smart descriptions from source code
๐งช Development
Build
npm run build
Watch Mode
npm run dev
Test Locally
# Point to your project
export PROJECT_ROOT=/path/to/test/project
node run-local.js
# Verify output
cat registry.json | jq '.items | length'
๐ Example Output
After running sync, your registry.json will look like:
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "shadcn-ui",
"homepage": "https://ui.shadcn.com",
"items": [
{
"name": "utils",
"type": "registry:lib",
"title": "Utils",
"description": "General utility functions including className merging (cn) and common helper methods",
"files": [
{
"type": "registry:lib",
"path": "src/lib/utils.ts"
}
]
},
{
"name": "use-mobile",
"type": "registry:hook",
"title": "useMobile",
"description": "React hook for detecting mobile viewport. Returns a boolean indicating whether the current screen width is below the mobile breakpoint",
"files": [
{
"type": "registry:hook",
"path": "src/hooks/use-mobile.ts"
}
],
"dependencies": ["react"]
},
{
"name": "button",
"type": "registry:component",
"title": "Button",
"description": "A reusable button component built on Radix UI Slot",
"files": [
{
"type": "registry:component",
"path": "src/components/button/index.tsx"
}
],
"dependencies": ["@radix-ui/react-slot", "class-variance-authority"],
"registryDependencies": ["@shadcn-ui/icon"]
}
]
}
๐ ๏ธ Development
Setup Development Environment
-
Clone and install:
git clone https://github.com/your-org/shadcn-registry-sync-mcp.git cd shadcn-registry-sync-mcp yarn install -
Build the project:
yarn build -
Run linter:
yarn lint -
Format code:
yarn format
Available Scripts
| Command | Description |
|---|---|
yarn build |
Compile TypeScript to JavaScript |
yarn dev |
Watch mode for development |
yarn lint |
Run ESLint |
yarn lint:fix |
Auto-fix ESLint errors |
yarn format |
Format code with Prettier |
yarn format:check |
Check code formatting |
yarn check |
Run both lint and format check |
yarn commit |
Interactive commit with Commitizen |
Commit Guidelines
This project uses Commitizen for standardized commit messages:
yarn commit
This will launch an interactive prompt that helps you create commits following the Conventional Commits specification.
Commit types:
feat: New featuresfix: Bug fixesdocs: Documentation changesstyle: Code style changes (formatting, etc.)refactor: Code refactoringperf: Performance improvementstest: Adding testsbuild: Build system changesci: CI/CD changeschore: Maintenance tasksrevert: Reverting changes
Pre-commit hooks automatically run linting and formatting on staged files using Husky and lint-staged.
๐ Contributing
We welcome contributions! Please see our Contributing Guide for details on:
- Development setup
- Code standards
- Commit message format
- Pull request process
- Testing guidelines
๐ค Contributing
Contributions are welcome! See our Architecture Guide for understanding the codebase.
Quick Contribution Guide
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Make your changes
- Build and test:
yarn build && node run-local.js - Commit and push
- Open a Pull Request
๐ License
MIT License โ feel free to use in your projects!
๐ Acknowledgments
- shadcn/ui โ Amazing component library
- Model Context Protocol โ AI integration standard
- Radix UI โ Accessible primitives
<div align="center">
Made with โค๏ธ for the shadcn/ui community
Report Issue ยท Request Feature ยท View Architecture
</div>
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.