.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all β†’

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out β†’
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with β™₯ Β· Β© 2026 aaaa.fyi

Independent project Β· real data from public registries

…/jpisnice/shadcn-ui-mcp-server
home/mcp-servers/jpisnice/shadcn-ui-mcp-server
jpisnice avatar

shadcn-ui-mcp-server

byjpisniceΒ· 1 MCP server

Installs

13k

Stars

2.9k

Forks

302

Category

Frontend Development

View on GitHub

TL;DR

> πŸš€ The fastest way to integrate shadcn/ui components into your AI workflow

How to install shadcn-ui-mcp-server?

jpisnice/shadcn-ui-mcp-server
$git clone https://github.com/jpisnice/shadcn-ui-mcp-server

Installs into the current project.

β€ΊPrefer a prompt? Paste this to your agent

Install & use

Install shadcn-ui-mcp-server by running `git clone https://github.com/jpisnice/shadcn-ui-mcp-server`, then use it for the current task and follow its documentation at https://github.com/jpisnice/shadcn-ui-mcp-server.

Files Β· 1

View on GitHub
README.md
1# Shadcn UI v4 MCP Server
2Β 
3[![npm version](https://badge.fury.io/js/@jpisnice%2Fshadcn-ui-mcp-server.svg)](https://badge.fury.io/js/@jpisnice%2Fshadcn-ui-mcp-server)
4[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5Β 
6[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/Jpisnice/shadcn-ui-mcp-server)](https://archestra.ai/mcp-catalog/jpisnice__shadcn-ui-mcp-server)
7Β 
8> **πŸš€ The fastest way to integrate shadcn/ui components into your AI workflow**
9Β 
10A Model Context Protocol (MCP) server that provides AI assistants with comprehensive access to [shadcn/ui v4](https://ui.shadcn.com/) components, blocks, demos, and metadata. Seamlessly retrieve React, Svelte, Vue, and React Native implementations for your AI-powered development workflow.
11Β 
12## ✨ Key Features
13Β 
14- **🎯 Multi-Framework Support** - React, Svelte, Vue, and React Native implementations
15- **πŸ“¦ Component Source Code** - Latest shadcn/ui v4 TypeScript source
16- **🎨 Component Demos** - Example implementations and usage patterns
17- **πŸ—οΈ Blocks Support** - Complete block implementations (dashboards, calendars, forms)
18- **πŸ“‹ Metadata Access** - Dependencies, descriptions, and configuration details
19- **πŸ” Directory Browsing** - Explore repository structures
20- **⚑ Smart Caching** - Efficient GitHub API integration with rate limit handling
21- **🌐 SSE Transport** - Server-Sent Events support for multi-client deployments
22- **🐳 Docker Ready** - Production-ready containerization with Docker Compose
23Β 
24## πŸš€ Quick Start
25Β 
26```bash
27# Basic usage (60 requests/hour)
28npx @jpisnice/shadcn-ui-mcp-server
29Β 
30# With GitHub token (5000 requests/hour) - Recommended
31npx @jpisnice/shadcn-ui-mcp-server --github-api-key ghp_your_token_here
32Β 
33# Switch frameworks
34npx @jpisnice/shadcn-ui-mcp-server --framework svelte
35npx @jpisnice/shadcn-ui-mcp-server --framework vue
36npx @jpisnice/shadcn-ui-mcp-server --framework react-native
37Β 
38# Use Base UI instead of Radix (React only)
39npx @jpisnice/shadcn-ui-mcp-server --ui-library base
40```
41Β 
42**🎯 Get your GitHub token in 2 minutes**: [docs/getting-started/github-token.md](docs/getting-started/github-token.md)
43Β 
44## πŸ“¦ One-Click Installation (Claude Desktop)
45Β 
46Download and double-click the `.mcpb` file for instant installation:
47Β 
481. Download `shadcn-ui-mcp-server.mcpb` from [Releases](https://github.com/Jpisnice/shadcn-ui-mcp-server/releases)
492. Double-click the file - Claude Desktop opens automatically
503. Enter your GitHub token (optional, for higher rate limits)
514. Click Install - tools are available immediately
52Β 
53**Manual install:** Claude Desktop β†’ Settings β†’ MCP β†’ Add Server β†’ Browse β†’ Select `.mcpb` file
54Β 
55> **References:** [Anthropic Desktop Extensions](https://www.anthropic.com/engineering/desktop-extensions) | [Building MCPB](https://support.claude.com/en/articles/12922929-building-desktop-extensions-with-mcpb)
56Β 
57## 🌐 SSE Transport & Docker Deployment
58Β 
59Run the server with **Server-Sent Events (SSE)** transport for multi-client support and production deployments:
60Β 
61### Quick Start with SSE
62```bash
63# SSE mode (supports multiple concurrent connections)
64node build/index.js --mode sse --port 7423
65Β 
66# Docker Compose (production ready)
67docker-compose up -d
68Β 
69# Connect with Claude Code
70claude mcp add --scope user --transport sse shadcn-mcp-server http://localhost:7423/sse
71```
72Β 
73### Transport Modes
74- **`stdio`** (default) - Standard input/output for CLI usage
75- **`sse`** - Server-Sent Events for HTTP-based connections
76- **`dual`** - Both stdio and SSE simultaneously
77Β 
78### Docker Examples
79```bash
80# Basic container
81docker run -p 7423:7423 shadcn-ui-mcp-server
82Β 
83# With GitHub API token
84docker run -p 7423:7423 -e GITHUB_PERSONAL_ACCESS_TOKEN=ghp_your_token shadcn-ui-mcp-server
85Β 
86# Docker Compose (recommended)
87docker-compose up -d
88curl http://localhost:7423/health
89```
90Β 
91### Environment Variables
92- `MCP_TRANSPORT_MODE` - Transport mode (stdio|sse|dual)
93- `MCP_PORT` - SSE server port (default: 7423 - SHADCN on keypad!)
94- `MCP_HO

Preview

jpisnice/shadcn-ui-mcp-serverjpisnice/shadcn-ui-mcp-server

# Shadcn UI v4 MCP Server

[![npm version](https://badge.fury.io/js/@jpisnice%2Fshadcn-ui-mcp-server.svg)](https://badge.fury.io/js/@jpisnice%2Fshadcn-ui-mcp-server)

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/Jpisnice/shadcn-ui-mcp-server)](https://archestra.ai/mcp-catalog/jpisnice__shadcn-ui-mcp-serv

Repojpisnice/shadcn-ui-mcp-server
TypeMCP Servers
CategoryFrontend Development
UpdatedMay 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPaiexpo

Related

6 picks
Type
  1. jgravelle avatarjcodemunch-mcpToken-efficient code exploration via tree-sitter AST parsing. 70+ languages, 95%+ token savings.MCP ServersJul 202694k2.3k
  2. minimax-ai avatarminimax-coding-plan-mcpSpecialized MiniMax Model Context Protocol (MCP) server designed for coding-plan usersMCP ServersFeb 202677k94
  3. neomjs avatarneoNeo.mjs is a self-evolving software organism: a professional end-to-end AI engineering team whose cross-model swarm inhabits live apps via Neural Link, Active Hybrid GraphRAG, DreamService, and self-healing loops.MCP ServersJul 202639k3.2k
  4. oaslananka avatarkicad-mcp-proProduction-grade MCP server for KiCad EDAβ€”PCB design, DRC, simulation, BOM, DFM, and manufacturing.MCP ServersJul 20269.5k37
  5. taiga-family avatartaiga-ui-mcpModel Context Protocol server providing Taiga UI documentation search and scaffolding tools.MCP ServersJul 20268.7k14
  6. magicuidesign avatarmcpOfficial MCP server for Magic UI.MCP ServersApr 20268.4k198