claude-mcp-render-local-widgets
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@claude-mcp-render-local-widgetsrender a bar chart of monthly sales data"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Claude.ai UI widgets examples
Two standalone servers, each demonstrating a different Prefab pattern.
Install
python -m venv venv && source venv/bin/activate
pip install -r requirements.txtRelated MCP server: ggui
1. chat_app.py — interactive, calls back to the server
Pattern: FastMCPApp with two tools —
chat_widget(@app.ui()) — the entry point the model calls, visible in the model's tool list.send_message(@app.tool()) — UI-only (never shown to the model), called by the widget'sForm.on_submitviaCallTool.
Use this pattern whenever the UI needs to write data, trigger backend work, or fetch something fresh — anything beyond just displaying what the tool returned.
fastmcp dev apps chat_app.py # preview in browser
python chat_app.py # run for Claude Desktop (stdio)2. chart_app.py — data visualization, no callback needed
Pattern: a single @mcp.tool(app=True) that returns a PrefabApp
wrapping a BarChart. No FastMCPApp, no second tool — charts render
entirely client-side (tooltips, legend, hover) from the data you pass in
once. Use this pattern whenever the UI's job is just to display what
the tool already computed.
fastmcp dev apps chart_app.py # preview in browser
python chart_app.py # run for Claude Desktop (stdio)Swap BarChart/ChartSeries for LineChart, AreaChart, PieChart,
RadarChart, or RadialChart — same data + series shape for all of
them (PieChart uses data_key/name_key instead of series).
Connecting to claude.ai (web) instead of Desktop
Follow the ngrok way to tunnel local mcp server Read the installation guide
Which pattern for your own tool?
Your UI needs to... | Use |
Just display data the tool computed |
|
Submit forms, trigger backend actions, refresh data |
|
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Give any MCP-compatible AI assistant a builder for live, hosted web tools and workflows.
Use AI models for chat, image, and video generation from Claude Code and other MCP hosts.
MCP tools for AI agents: render URLs to image/PDF, check link health, convert HTML/CSV/JSON.
Let AI agents query data and act across all your business apps via MCP.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI agents to render interactive user interfaces such as forms, dashboards, charts, tables, and wizards directly in MCP-compatible clients. Supports structured data collection and richer interactions beyond text responses.6MIT
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to generate and serve ephemeral, interactive user interfaces over MCP through natural language descriptions.39Apache 2.0
- AlicenseNot gradedqualityCmaintenanceEnables building ChatGPT apps with custom UI widgets via a minimal Node.js MCP server, allowing tools to return structured content rendered in an iframe widget.3MIT
- AlicenseNot gradedqualityCmaintenanceA minimal, dependency-free MCP server that renders interactive widgets (like bar charts) inline in Claude, ChatGPT, and Grok from a custom connector.1MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thecuriousarchitect09/claude-mcp-render-local-widgets'
If you have feedback or need assistance with the MCP directory API, please join our Discord server