DAUB MCP Server Lets Claude Generate and Render UIs via JSON Specs

DAUB is an MCP server built specifically for Claude that bypasses the traditional UI development workflow where Claude generates code (like JSX/HTML) that developers then copy, paste, compile, and debug. Instead, Claude can directly generate and render full user interfaces.
How It Works
When using Claude with DAUB, the workflow is:
- Claude calls
generate_ui("I need a dashboard with a spending chart, filters, and a data table") - DAUB's MCP server generates a structured JSON specification
- DAUB renders this spec as a live interface immediately—no compilation or copy-paste required
- Claude can then call
validate_specorrender_specto iterate on the design across multiple conversation turns
MCP Server Tools
The MCP server, which runs on Cloudflare edge, exposes four specific tools:
generate_ui: Converts natural language descriptions into rendered interfacesrender_spec: Takes a JSON specification and returns a live rendervalidate_spec: Allows Claude to check its own output before renderingget_component_catalog: Lets Claude browse 76 components across 34 categories to select appropriate UI elements
Technical Details
The JSON specification format is intentionally simple to ensure Claude can produce it reliably. It covers layout, typography, forms, tables, navigation, data display, and overlays. Claude can diff specs across turns and iterate without starting from scratch.
The rendering side requires only two CDN files: daub.css and daub.js. It includes 20 visual theme families and requires zero build step.
The entire project was built with Claude Code during development, with the specification format heavily iterated with Claude to ensure consistent generation without hallucinating component names.
Availability
DAUB is free to use. The GitHub repository is available at https://github.com/sliday/daub, and there's a playground at https://daub.dev/playground.html where you can try it without Claude. A roadmap is available at https://daub.dev/roadmap.
📖 Read the full source: r/ClaudeAI
👀 See Also
Collaborate: A Claude Code Skill for Structured, Asynchronous Document Writing with Multi-Agent Handoffs
A Claude Code skill called 'collaborate' enables multi-contributor document writing where each participant gets a plain‑English briefing from Claude on previous changes, reasoning, and next tasks, with support for parallel sections, structured critique, and Slack/Signal notifications.

Nit: A Git Replacement in Zig Optimized for AI Agent Token Efficiency
Nit is a native Git replacement written in Zig that reduces token usage by 35-87% on common commands like status, diff, log, and show. It achieves this through compact output defaults and direct libgit2 integration, eliminating subprocess overhead.

Community-voted Model Leaderboard for OpenClaw Released
A new community-voted leaderboard for models compatible with OpenClaw is now available, with Opus 4.5 currently leading.

Compass Chrome Extension Adds Navigation Tools to Claude and ChatGPT
A developer built a free Chrome extension called Compass that adds a prompt minimap, sticky scroll headers, session checklists, and prompt builder templates to Claude and ChatGPT interfaces to solve navigation problems in long conversations.