{"id":28769781,"url":"https://github.com/ymadd/shadcn-ui-mcp-server","last_synced_at":"2026-02-21T08:29:42.500Z","repository":{"id":282752323,"uuid":"945094594","full_name":"ymadd/shadcn-ui-mcp-server","owner":"ymadd","description":"MCP server for shadcn/ui component references","archived":false,"fork":false,"pushed_at":"2025-04-14T06:54:28.000Z","size":21,"stargazers_count":60,"open_issues_count":2,"forks_count":8,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-30T10:46:27.340Z","etag":null,"topics":["mcp-server","shadcn-ui"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ymadd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-08T16:42:10.000Z","updated_at":"2025-10-17T05:01:10.000Z","dependencies_parsed_at":"2025-03-16T19:09:39.115Z","dependency_job_id":null,"html_url":"https://github.com/ymadd/shadcn-ui-mcp-server","commit_stats":null,"previous_names":["ymadd/shadcn-ui-mcp-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ymadd/shadcn-ui-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymadd%2Fshadcn-ui-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymadd%2Fshadcn-ui-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymadd%2Fshadcn-ui-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymadd%2Fshadcn-ui-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ymadd","download_url":"https://codeload.github.com/ymadd/shadcn-ui-mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymadd%2Fshadcn-ui-mcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29677472,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T06:23:40.028Z","status":"ssl_error","status_checked_at":"2026-02-21T06:23:39.222Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mcp-server","shadcn-ui"],"created_at":"2025-06-17T13:04:13.369Z","updated_at":"2026-02-21T08:29:42.495Z","avatar_url":"https://github.com/ymadd.png","language":"JavaScript","funding_links":[],"categories":["Developer Tools","Content Creation"],"sub_categories":["How to Submit"],"readme":"# shadcn-ui MCP Server\n\nMCP server for shadcn/ui component references\n\nThis is a TypeScript-based MCP server that provides reference information for shadcn/ui components. It implements a Model Context Protocol (MCP) server that helps AI assistants access shadcn/ui component documentation and examples.\n\n## Features\n\n### Tools\n\n- `list_shadcn_components` - Get a list of all available shadcn/ui components\n- `get_component_details` - Get detailed information about a specific component\n- `get_component_examples` - Get usage examples for a specific component\n- `search_components` - Search for components by keyword\n\n### Functionality\n\nThis server scrapes and caches information from:\n- The official shadcn/ui documentation site (https://ui.shadcn.com)\n- The shadcn/ui GitHub repository\n\nIt provides structured data including:\n- Component descriptions\n- Installation instructions\n- Usage examples\n- Props and variants\n- Code samples\n\n## Development\n\nInstall dependencies:\n```bash\nnpm install\n```\n\nBuild the server:\n```bash\nnpm run build\n```\n\nFor development with auto-rebuild:\n```bash\nnpm run watch\n```\n\n## Installation\n\n### Claude Desktop Configuration\n\nTo use with Claude Desktop, add the server config:\n\nOn MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`\nOn Windows: `%APPDATA%/Claude/claude_desktop_config.json`\n\n#### Option 1: Using local build\n\n```json\n{\n  \"mcpServers\": {\n    \"shadcn-ui-server\": {\n      \"command\": \"/path/to/shadcn-ui-server/build/index.js\"\n    }\n  }\n}\n```\n\n#### Option 2: Using npx command\n\n```json\n{\n  \"mcpServers\": {\n    \"shadcn-ui-server\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"shadcn-ui-mcp-server\"]\n    }\n  }\n}\n```\n\n### Windsurf Configuration\n\nAdd this to your `./codeium/windsurf/model_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"shadcn-ui-server\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"shadcn-ui-mcp-server\"]\n    }\n  }\n}\n```\n\n### Cursor Configuration\n\nAdd this to your `.cursor/mcp.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"shadcn-ui-server\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"shadcn-ui-mcp-server\"]\n    }\n  }\n}\n```\n\n### Debugging\n\nSince MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), which is available as a package script:\n\n```bash\nnpm run inspector\n```\n\nThe Inspector will provide a URL to access debugging tools in your browser.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fymadd%2Fshadcn-ui-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fymadd%2Fshadcn-ui-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fymadd%2Fshadcn-ui-mcp-server/lists"}