MCP server that turns HTML MUP panels into interactive UI tools for LLMs.
MCP server that turns HTML MUP panels into interactive UI tools for LLMs. It exposes a protocol that converts UI panels into reusable, interactive components for AI agents, enabling hands-on experiences within chat.
π οΈ Key Features
Converts HTML MUP panels into interactive UI elements for LLMs
Versioned protocol: mup/2026-03-17, current as of 0.2.8
Readme excerpt highlights demos and multilingual support
Bring interactive UI into LLM chat β so anyone can experience agentic AI, not just developers.
Current version: 0.2.11 | Protocol: mup/2026-03-17
Demos
Slides β AI builds a presentation live
Claude creates a full slide deck with charts, tables, and themes β all through function calls.
PDF to Presentation β AI reads a paper and presents it
Claude reads the AlexNet paper from a PDF, takes Markdown notes, captures figures with human-AI collaboration, builds a 19-slide presentation with charts and tables, then presents it slide by slide in the new in-panel reading mode β all narrated live.
Sound Pad β AI composes a track from scratch
16 browser-synthesized instruments, zero samples. Claude composes an electro swing track layer by layer, with event-driven narration synced to each section transition.
What is MUP?
A MUP is an interactive UI component that lives inside an LLM chat interface.
It bundles a visual interface with callable functions. The user operates it by clicking buttons; the LLM operates it through function calls. Both sides see each other's actions in real time.
The simplest MUP is a single .html file β no build step, no framework, no SDK.
Why?
Agentic AI is powerful, but today it's trapped behind text commands and developer tools. Most people never get to experience it.
MUP changes this. It puts clickable, visual UI right inside the chat β so anyone can use agentic capabilities without writing a single prompt.
Traditional Chat
With MUP
User interaction
Type text commands
Click buttons, drag sliders, see live visuals
Tool results
Hidden from user, only the LLM sees them
Visible and interactive for both sides
Who can use it
Power users who know the right prompts
Anyone
Key Ideas
Shared functions. A function can be called by the LLM (as a tool) or triggered by the user (via UI). Both sides operate on the same state through the same code.
LLM as orchestrator. MUPs don't talk to each other. The LLM reads outputs and decides what to do next.
Just HTML. Write a manifest, register your functions, done. Ship a single file.
Available MUPs
Chat β Built-in, always available
Slides β Presentation editor with charts, tables, themes, reading mode, and export (demo)
PDF Reader β PDF viewer with page text extraction and region selection/capture
Markdown β Markdown workspace with annotations and document management
Sound Pad β 16-pad synthesizer with sequencer, per-track volume, and event system (demo)
Chord Pad β Music theory keyboard with 5 synth voices, chord progressions, and melody playback
Diagram β Auto-layouted node-and-edge diagrams (flowcharts, mind maps, architectures) with multiple layout algorithms
Star Map β Location-based interactive star map with constellations, ecliptic, and Milky Way
Voice β Speech synthesis and recognition (Jarvis mode)
Notes β Sticky-note workspace with groups, styles, and export
Pixel Art β Pixel canvas with shapes, ASCII patterns, fills, and PNG export
Timer β Countdown timer / stopwatch with event-driven completion
For iteratively building a single MUP with Claude (edit .html β Chrome hot reloads β user interacts β channel pushes back to Claude β repeat), see mup-mini-mcp-server β a scaffolding-style sibling that loads exactly one MUP and provides only the plumbing: hot reload, WebSocket bridge, and channel push. No catalog, no grid, no extras.
git clone https://github.com/Ricky610329/mup.git
cd mup/mup-mcp-server
npm install && npm run build
Getting Started
With Claude Code (recommended)
bash
claude mcp add --transport stdio --scope user mup -- npx mup-mcp-server
Restart Claude Code. A browser window opens at http://localhost:3200. Use the MUPs panel to load a folder of MUP .html files, or start with the built-in Chat widget.
Real-time channel mode
MUPs can push interactions directly into Claude's conversation via channel notifications. To enable:
bash
claude --dangerously-load-development-channels server:mup
This lets MUPs deliver user actions to Claude in real time. Without this flag, all MUP features still work β interactions are just delivered via polling instead of push.