AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Daisyui Mcp Server

mcp-matracey-daisyui-mcp-server Β· by matracey

MCP server for daisyUI React components β€” search docs, props, and code examples from any AI coding assistant 🌼

β€” No reviews yet
0 installs
39 views
0.0% view→install

Install

$ agentstack add mcp-matracey-daisyui-mcp-server

βœ“ scanned Β· βœ“ verified, works with Claude Code, Cursor, and more.

Security review

βœ“ Passed

No issues found. Passed automated security review. Β· v0.1.0 How review works β†’

  • βœ“ Prompt-injection patterns
  • βœ“ Secret / credential exfiltration
  • βœ“ Dangerous shell & filesystem operations
  • βœ“ Untrusted network calls
  • βœ“ Known-malicious package signatures

What it can access

  • βœ“ Network access No
  • βœ“ Filesystem access No
  • βœ“ Shell / process execution No
  • βœ“ Environment & secrets No
  • βœ“ Dynamic code execution No

From automated source analysis of v0.1.0. β€œUsed” means the capability is present in the source β€” more access means more to trust, not that it’s unsafe.

View the full security report β†’

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-matracey-daisyui-mcp-server)

Reliability & compatibility

βœ“ Security review passed
0 installs to date
β€” no reviews yet
● 2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work β†’
Are you the author of Daisyui Mcp Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

🌼 daisyui-mcp-server

> MCP server for daisyUI React components β€” search docs, props, and code examples from any AI coding assistant

[](https://www.npmjs.com/package/daisyui-mcp-server) [](https://opensource.org/licenses/MIT) [](https://github.com/matracey/daisyui-mcp-server/actions/workflows/ci.yml) [](https://nodejs.org)

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.)

  1. Go to Settings β†’ Tools β†’ AI Assistant β†’ MCP Servers
  2. Click Add
  3. Set command to npx with 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

  1. Add the component name and category to the CATEGORY_MAP in scripts/generate-knowledge-base.ts
  2. Run npm run generate to regenerate the knowledge base
  3. Run npm test to 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:

  1. Clones the react-daisyui repository
  2. Parses each component's TypeScript source to extract props, types, and defaults
  3. Scrapes daisyui.com/components// for descriptions, CSS classes, and examples
  4. 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](CONTRIBUTING.md) for guidelines.

  • Open an issue for bugs or feature requests
  • Submit a pull request with your changes

License

MIT β€” see [LICENSE](LICENSE) for details.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source β€” we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.