mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-15 11:51:34 +00:00
Adds .cursor-plugin/plugin.json so this repo installs as a Cursor plugin via /add-plugin shadcn-ui/ui. - Loads the existing skills/shadcn/SKILL.md skill (auto-discovered via the manifest's skills field). - Registers the shadcn MCP server (npx shadcn@latest mcp) inline so users get the same MCP config already documented for every other client without hand-editing .cursor/mcp.json. - Reuses skills/shadcn/assets/shadcn.png as the plugin logo. No skill content or MCP changes — purely manifest wiring. Made-with: Cursor
42 lines
971 B
JSON
42 lines
971 B
JSON
{
|
|
"name": "shadcn",
|
|
"displayName": "shadcn/ui",
|
|
"version": "1.0.0",
|
|
"description": "Official shadcn/ui Cursor plugin. Loads the shadcn agent skill (skills/shadcn/SKILL.md) and registers the shadcn MCP server (npx shadcn@latest mcp) so Cursor agents can browse registries, search, view, install, and audit components.",
|
|
"author": {
|
|
"name": "shadcn"
|
|
},
|
|
"homepage": "https://ui.shadcn.com",
|
|
"repository": "https://github.com/shadcn-ui/ui",
|
|
"license": "MIT",
|
|
"logo": "skills/shadcn/assets/shadcn.png",
|
|
"keywords": [
|
|
"shadcn",
|
|
"shadcn-ui",
|
|
"ui",
|
|
"components",
|
|
"tailwind",
|
|
"tailwindcss",
|
|
"radix",
|
|
"react",
|
|
"design-system",
|
|
"registry",
|
|
"mcp"
|
|
],
|
|
"category": "developer-tools",
|
|
"tags": [
|
|
"ui",
|
|
"components",
|
|
"design-system",
|
|
"react",
|
|
"tailwind"
|
|
],
|
|
"skills": "./skills/",
|
|
"mcpServers": {
|
|
"shadcn": {
|
|
"command": "npx",
|
|
"args": ["shadcn@latest", "mcp"]
|
|
}
|
|
}
|
|
}
|