chatgpt-app-builder▌
mcp-use/mcp-use · updated Apr 8, 2026
DEPRECATED: Use mcp-app-builder instead. Build ChatGPT apps with interactive widgets and zero-config React development.
- ›This skill is deprecated; migrate to mcp-app-builder for continued support and updates
- ›Enables collaborative UI between human users and LLM through shared interactive widgets
- ›Provides server handlers, React widget scaffolding, state management, and built-in hooks for tool calls and follow-up messages
- ›Covers display modes (inline, fullscreen, picture-in-picture),
ChatGPT App Builder
Build ChatGPT apps with interactive widgets using mcp-use. Zero-config widget development with automatic registration and built-in React hooks.
The app is consumed by two users at once: the human and the ChatGPT LLM. They collaborate through the widget -- the human interacts with it, the LLM sees its state. The widget is your shared surface.
Before You Code
- Clarify what to build → discover.md: when starting a new app, validating an idea, or scoping features
- Design tools and widgets → architecture.md: when deciding what needs UI vs tools-only, designing UX flows
Setup
- Scaffold and run → setup.md: when creating a new project, starting dev server, connecting to ChatGPT/Claude
Implementation
- Server handlers + widget creation → server-and-widgets.md: when writing server.tool() with widgets, widget() helper, React widget files
- Widget state and LLM context → state-and-context.md: when persisting state, triggering LLM from widget, managing ephemeral vs persistent data
- Display modes, theme, layout → ui-guidelines.md: when adapting to inline/fullscreen/PiP, handling theme, device, locale
- Component API → components-api.md: when using McpUseProvider, Image, ErrorBoundary, useWidget
- CSP and metadata → csp-and-metadata.md: when configuring external domains, dual-protocol metadata
- Advanced patterns → widget-patterns.md: when building complex widgets with tool calls, state, theming
Quick Reference
// Server
import { MCPServer, widget, text, object } from "mcp-use/server";
server.tool({ name: "...", schema: z.object({...}), widget: { name: "widget-name" } },
async (input) => widget({ props: {...}, output: text("...") })
);
// Widget (resources/widget-name.tsx)
import { McpUseProvider, useWidget, type WidgetMetadata } from "mcp-use/react";
export const widgetMetadata: WidgetMetadata = { description: "...", props: z.object({...}) };
export default function MyWidget() {
const { props, isPending, callTool, sendFollowUpMessage, state, setState, theme } = useWidget();
if (isPending) return <McpUseProvider autoSize><div>Loading...</div></McpUseProvider>;
return <McpUseProvider autoSize><div>{/* UI */}</div></McpUseProvider>;
}
Ratings
4.4★★★★★50 reviews- ★★★★★Shikha Mishra· Dec 24, 2024
Registry listing for chatgpt-app-builder matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Anaya Okafor· Dec 24, 2024
Useful defaults in chatgpt-app-builder — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Noor Patel· Dec 20, 2024
I recommend chatgpt-app-builder for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Yusuf White· Dec 4, 2024
chatgpt-app-builder has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Yusuf Mensah· Nov 23, 2024
Keeps context tight: chatgpt-app-builder is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Yash Thakker· Nov 15, 2024
Solid pick for teams standardizing on skills: chatgpt-app-builder is focused, and the summary matches what you get after install.
- ★★★★★Hiroshi Flores· Nov 15, 2024
I recommend chatgpt-app-builder for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Chen Diallo· Nov 11, 2024
Useful defaults in chatgpt-app-builder — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★James Huang· Oct 14, 2024
We added chatgpt-app-builder from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Dhruvi Jain· Oct 6, 2024
I recommend chatgpt-app-builder for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 50