daisyui-mcp-server
MCP server for daisyUI React components that enables AI coding assistants to search documentation, look up props, and retrieve code examples.
README
πΌ daisyui-mcp-server
MCP server for daisyUI React components β search docs, props, and code examples from any AI coding assistant
Overview
daisyui-mcp-server is a Model Context Protocol (MCP) server that gives AI coding assistants instant access to daisyUI React component documentation. It enables tools like GitHub Copilot, Claude, Cursor, and others to search components, look up props, and retrieve code examples β all without leaving your editor.
daisyUI is the most popular component library for Tailwind CSS, providing beautiful, accessible UI components. This MCP server is built around the react-daisyui bindings.
βββββββββββββββββββ ββββββββββββββ βββββββββββββββββββββββ ββββββββββββββββββ
β AI Assistant ββββββΆβ MCP Client ββββββΆβ daisyui-mcp-server ββββββΆβ Knowledge Base β
β (Copilot/Claude) βββββββ βββββββ βββββββ (56 components)β
βββββββββββββββββββ ββββββββββββββ βββββββββββββββββββββββ ββββββββββββββββββ
Available Tools
| Tool | Description | Parameters |
|---|---|---|
daisyui_search |
Search component documentation | query (required), category, limit |
daisyui_get_component |
Get full component docs with props & examples | name (required) |
daisyui_get_examples |
Get code examples for a component | name (required) |
daisyui_list_components |
List all components, optionally by category | category |
daisyui_get_theme_info |
Get daisyUI theme configuration guide | β |
Categories
Components are organized into: actions, data-display, navigation, feedback, layout, data-input, mockup
Quick Start
npx daisyui-mcp-server
Configuration
VS Code (GitHub Copilot)
Add to .vscode/mcp.json:
{
"servers": {
"daisyui": {
"type": "stdio",
"command": "npx",
"args": ["-y", "daisyui-mcp-server"]
}
}
}
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"daisyui": {
"command": "npx",
"args": ["-y", "daisyui-mcp-server"]
}
}
}
Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"daisyui": {
"command": "npx",
"args": ["-y", "daisyui-mcp-server"]
}
}
}
Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"daisyui": {
"command": "npx",
"args": ["-y", "daisyui-mcp-server"]
}
}
}
Amazon Q Developer CLI
Add to ~/.aws/amazonq/mcp.json:
{
"mcpServers": {
"daisyui": {
"command": "npx",
"args": ["-y", "daisyui-mcp-server"]
}
}
}
Zed
Add to settings.json:
{
"context_servers": {
"daisyui": {
"command": {
"path": "npx",
"args": ["-y", "daisyui-mcp-server"]
}
}
}
}
JetBrains IDEs (IntelliJ, WebStorm, etc.)
- Go to Settings β Tools β AI Assistant β MCP Servers
- Click Add
- Set command to
npxwith arguments["-y", "daisyui-mcp-server"]
Cline
Add to cline_mcp_settings.json:
{
"mcpServers": {
"daisyui": {
"command": "npx",
"args": ["-y", "daisyui-mcp-server"]
}
}
}
Development
Prerequisites
- Node.js >= 18
- npm
Setup
git clone https://github.com/matracey/daisyui-mcp-server.git
cd daisyui-mcp-server
npm install
Build
npm run build
Test
npm test # Run tests
npm run test:watch # Watch mode
npm run test:coverage # With coverage report
Run Locally
npm run dev # Watch mode with tsx
npm start # Run built version
Regenerate Knowledge Base
The knowledge base is generated from the react-daisyui source code and daisyUI documentation:
npm run generate
This clones the react-daisyui repo, parses component source files for props and types, scrapes daisyui.com for descriptions and examples, and outputs the result to src/data/generated/.
Adding New Components
- Add the component name and category to the
CATEGORY_MAPinscripts/generate-knowledge-base.ts - Run
npm run generateto regenerate the knowledge base - Run
npm testto verify the new component is valid
How It Works
Architecture
The server uses the MCP SDK to expose 5 tools over stdio transport. When an AI assistant connects, it can call these tools to query a pre-built knowledge base of 56 daisyUI React components.
Knowledge Base Generation
The scripts/generate-knowledge-base.ts script:
- Clones the
react-daisyuirepository - Parses each component's TypeScript source to extract props, types, and defaults
- Scrapes
daisyui.com/components/<name>/for descriptions, CSS classes, and examples - Outputs a structured JSON file (
src/data/generated/components.json)
Search Scoring
The search engine uses a token-based scoring system:
| Match Type | Score |
|---|---|
| Exact name match | +100 |
| Name contains query | +50 |
| Name contains token | +30 |
| Description contains token | +15 |
| Prop name matches token | +10 |
| CSS class matches token | +10 |
| Example matches token | +5 |
Results are sorted by score and returned up to the specified limit (default 5, max 10).
Contributing
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
- Open an issue for bugs or feature requests
- Submit a pull request with your changes
License
MIT β see LICENSE for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.