
Mup
- 11 repo stars
- Updated April 15, 2026
- Ricky610329/mup
MUP is a MCP server that turns HTML MUP panels into interactive UI tools LLMs can use via stdio MCP.
About
MUP MCP Server sits at the intersection of agent tooling and lightweight UI: it takes HTML MUP panels and makes them interactive tools your LLM can invoke through Model Context Protocol, which helps developers who want buttons, forms, or panel chrome beyond plain markdown in the chat pane. Install the npm stdio package, register it in your MCP client, and use it during Build frontend work when you are prototyping operator consoles, config wizards, or visual helpers that the agent should manipulate directly. It is narrower than a full component library or a browser automation stack—you are standardizing on the MUP panel format as the contract between HTML and the agent. Skip it if you only need REST data or if your product UI already lives entirely in React with no agent-driven panel layer.
- Converts HTML MUP panels into interactive UI tools callable through MCP
- Published as mup-mcp-server on npm with stdio transport (v0.1.1)
- Bridges design-like HTML surfaces and agent workflows in Claude Code or Cursor
- Early-stage package (0.1.x)—expect API evolution
- GitHub source: Ricky610329/mup
Mup by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add mup-mcp-server -- npx -y mup-mcp-serverAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 11 |
|---|---|
| Package | mup-mcp-server |
| Transport | STDIO |
| Auth | None |
| Last updated | April 15, 2026 |
| Repository | Ricky610329/mup ↗ |
What it does
Expose HTML MUP panels as interactive MCP-driven UI tools so your coding agent can drive real controls instead of only text.
Who is it for?
Best when you're experimenting with MUP-style HTML panels and want Cursor or Claude Code to drive those UIs through MCP.
Skip if: Production design systems without MUP, heavy Playwright-style browser automation, or teams that do not use panel-based HTML at all.
What you get
After you add mup-mcp-server to your client, agents can interact with MUP HTML panels as MCP tools instead of guessing from static screenshots or prose.
- MCP tools backed by interactive MUP HTML panels
- Agent-driven UI operations on those panels via stdio MCP
By the numbers
- Package version 0.1.1
- Transport: stdio
- npm identifier: mup-mcp-server
README.md
MUP — Model UI Protocol
Bring interactive UI into LLM chat — so anyone can experience agentic AI, not just developers.
Current version: 0.2.8 | 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)
- Voice — Speech synthesis and recognition (Jarvis mode)
- Progress — Task progress tracking
- More examples in
archive/examples/(pixel art, games, productivity, etc.)
Docs
- Spec — Protocol definition: manifest, functions, lifecycle, error handling
- Design Philosophy — Why MUP is designed this way, and what we intentionally left out
- Examples — Example MUPs with walkthroughs
Install
npm (recommended)
npm install -g mup-mcp-server
Or run directly:
npx mup-mcp-server --mups-dir ./my-mups
Also available on the MCP Server Registry.
From source
git clone https://github.com/Ricky610329/mup.git
cd mup/mup-mcp-server
npm install && npm run build
Getting Started
With Claude Code (recommended)
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:
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.
Known issue (March 2026): Claude Code v2.1.80+ has a bug where
notifications/claude/channelevents are silently dropped and never reach the conversation. This affects all MCP channel implementations. MUP still works via polling (checkInteractions), but real-time push is broken. See anthropics/claude-code#36431 for tracking.
With Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mup": {
"command": "npx",
"args": ["mup-mcp-server"]
}
}
}
Quick Example
<script type="application/mup-manifest">
{
"name": "Counter",
"description": "A counter. User clicks +/-, LLM can set or read the value.",
"functions": [
{
"name": "setCount",
"description": "Set the counter to a specific value",
"inputSchema": {
"type": "object",
"properties": { "value": { "type": "number" } },
"required": ["value"]
}
},
{
"name": "getCount",
"description": "Get the current counter value",
"inputSchema": { "type": "object", "properties": {} }
}
]
}
</script>
Drop this into a MUP-compatible host, and it works.
Architecture
┌──────────────────────────────────────────┐
│ MUP (.html file) │
│ manifest + UI + functions │
└──────────────────┬───────────────────────┘
│ loaded by
▼
┌──────────────┐
│ MCP Server │
│ (Claude Code │
│ / Desktop) │
└──────┬───────┘
│ WebSocket
▼
┌─────────────────────────────┐
│ Browser Panel │
│ (MUP grid + Chat widget │
│ + workspace manager) │
└─────────────────────────────┘
Star History
License
Recommended MCP Servers
How it compares
Panel-to-MCP UI bridge, not a web scraper, not a multi-agent crew, and not a hosted integration generator.
FAQ
Who is MUP for?
Developers using MCP agents who work with HTML MUP panels and want those panels to become callable interactive tools.
When should I use MUP?
Use it in Build frontend/agent experiments when you need LLMs to operate MUP panel UIs during prototyping or internal tooling.
How do I add MUP to my agent?
Install npm package mup-mcp-server (0.1.1), configure it as a stdio MCP server in your client, and point your workflow at the MUP HTML panels you want exposed as tools.


