basecoat-ui-mcp
by Sorbh·★ 9·Score 38
MCP server providing Basecoat CSS components and documentation for AI-assisted HTML development.
Overview
The Basecoat UI MCP server offers programmatic access to 30+ Basecoat CSS components, including buttons, inputs, cards, dialogs, and navigation elements. It enables AI assistants to retrieve component HTML code, usage documentation, setup scripts, and theme switching code. The server supports search and discovery functionality, with components organized by categories like forms, navigation, feedback, interactive elements, and layouts. All components include accessibility features with ARIA attributes and semantic HTML.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose this when you're working with Basecoat CSS or ShadCN UI and need AI assistance to discover components, get documentation, or generate HTML interfaces.
When NOT to choose this
Don't choose this if you're not using Basecoat CSS, as the server provides no value for other CSS frameworks. Consider general-purpose UI component servers instead.
Tools this server exposes
7 tools extracted from the READMEget_componentname: stringGet HTML code for a specific component variant
list_componentsList all available components organized by category
get_usagecomponent: stringGet comprehensive usage documentation for a component
get_setupGet Basecoat CSS setup code with CDN links
get_theme_scriptGet theme switcher script for dark/light mode
search_componentsquery: stringSearch for components by name or category
get_categorycategory: stringGet all components in a specific category
Comparable tools
Installation
Installation
- Clone the repository:
git clone https://github.com/Sorbh/basecoat-ui-mcp.git
cd basecoat-ui-mcp- Install dependencies:
npm installClaude Desktop Configuration
{
"mcpServers": {
"basecoat-ui": {
"command": "npx",
"args": ["-y", "basecoat-ui-mcp"]
}
}
}Local Development
For local development, update the configuration to point to the local server:
{
"mcpServers": {
"basecoat-ui": {
"command": "node",
"args": ["/path/to/basecoat-ui-mcp/server.js"],
"cwd": "/path/to/basecoat-ui-mcp"
}
}
}Compare basecoat-ui-mcp with
Last updated · Auto-generated from public README + GitHub signals.