
How ChatGPT apps work
At its core, a ChatGPT app is an MCP server that exposes multiple tools. Each tools return structured contents including a widget. Specifically, each tools include- Metadata : Description of the tool (so that the model could call the right tool at the right time), input schema, the message to be displayed before/after the tool is executed, etc.
- Widgets : This is the component that is being displayed on the screen.
Building ChatGPT apps
With FastApps, you could simply use the prebuilt library to resgister tools and widgets. Tools (server/tools/hello_tool.py)
widgets/hello/index.jsx)
What FastApps provide
FastApps provide everything you need to build sophisticated ChatGPT apps: Widget Registration: Use theBaseWidget class to simply register it as an MCP tool. We handle the rest - no complex configuration or manual registration needed.
CLI commands: Just type fastapps init to set up the whole project. Use fastapps create mywidget to make an widget. Everything from component creation to MCP tool registeration will be set up automatically.
Simple auth: Authentication and other advanced features are all handled with our simple decorators. Just add @auth_required and you’re done.
Next Steps
Quick Start
Get up and running with FastApps in minutes

