
Shadcn Ui Server
MCP server 用于 shadcn/ui 组件引用
概述
shadcn-ui MCP 服务器
用于 shadcn/ui 组件参考的 MCP 服务器
这是一个基于 TypeScript 的 MCP 服务器,为 shadcn/ui 组件提供参考信息。它实现了模型上下文协议 (MCP) 服务器,帮助 AI 助手访问 shadcn/ui 组件文档和示例。
功能
工具
list_shadcn_components
- 获取所有可用的 shadcn/ui 组件列表get_component_details
- 获取特定组件的详细信息get_component_examples
- 获取特定组件的使用示例search_components
- 通过关键词搜索组件
功能
该服务器从以下来源抓取并缓存信息:
- 官方 shadcn/ui 文档站点 (https://ui.shadcn.com)
- shadcn/ui GitHub 仓库
它提供结构化数据包括:
- 组件描述
- 安装说明
- 使用示例
- 属性和变体
- 代码示例
开发
安装依赖:
bash
npm install
构建服务器:
bash
npm run build
开发时自动重建:
bash
npm run watch
安装
Claude 桌面配置
要与 Claude Desktop 一起使用,添加服务器配置:
在 MacOS:~/Library/Application Support/Claude/claude_desktop_config.json
在 Windows:%APPDATA%/Claude/claude_desktop_config.json
选项 1:使用本地构建
json
{
"mcpServers": {
"shadcn-ui-server": {
"command": "/path/to/shadcn-ui-server/build/index.js"
}
}
}
选项 2:使用 npx 命令
json
{
"mcpServers": {
"shadcn-ui-server": {
"command": "npx",
"args": ["-y", "shadcn-ui-mcp-server"]
}
}
}
Windsurf 配置
添加到你的 ./codeium/windsurf/model_config.json
:
json
{
"mcpServers": {
"shadcn-ui-server": {
"command": "npx",
"args": ["-y", "shadcn-ui-mcp-server"]
}
}
}
Cursor 配置
添加到你的 .cursor/mcp.json
:
json
{
"mcpServers": {
"shadcn-ui-server": {
"command": "npx",
"args": ["-y", "shadcn-ui-mcp-server"]
}
}
}
调试
由于 MCP 服务器通过 stdio 通信,调试可能具有挑战性。我们推荐使用 MCP Inspector,它作为包脚本提供:
bash
npm run inspector
检查器将提供一个 URL 用于在浏览器中访问调试工具。