I have been speedrunning for 10 days with a bunch of small ChatGPT Apps to experiment + see whats possible. So freaking fun and exciting ![]()
Didn’t really fit the picture of a full on “app” in ChatGPT (more like POCs) but just wanted to share what I’ve done so you can see what you can do + get my lessons learnt from it all and what potentially OpenAI can do in the Apps SDK.
Lessons Learnt
Since things are moving so quickly, maybe some of the following has been fixed already, feel free to lmk!
- CSP does not support anything other than
https, for example, if I wanted to permitwss://example.com/ws, the Apps SDK would set this to behttps://wss://example.com/ws - Write tool calls are not supported on mobile apps
- Mobile PIP potentially makes the PIP window disappear on a subsequent tool call that does not render a widget
- Since all widgets + resources and loaded at connection time, you have to make sure you wait for the render data to finish loading up. It would be great in the future for the Apps SDK to support rendering widgets from the response of the tool call itself, saving us the round trip from the render data (more aligned with MCP-UI)
Apps
- Day 9 - Javascript Code Running Sandbox in ChatGPT
- Day 8 - ChatGPT Mood Music Generator
- Day 7 - ChatGPT playing Chess
- Day 6 - Collaborative Whiteboard
- Day 5 - Web Browser Automation
- Day 4 - Youtube Video Insights
- Day 3 - Animated Interactive Cat Companion
- Day 2 - Shopping in ChatGPT
- Day 1 - PDF Preview
Tech Used + Advice
- Cloudflare for MCP hosting
- React Server Components for widget resources using RedwoodSDK - this was a huge win for me for DX, didn’t need a separate build step, can render from tool response directly versus waiting for render data (MCP-UI approach) when it is supported
- Optional - MCP-UI - Used MCP-UI to support other clients as well, but not required for ChatGPT Apps
- Overall, don’t need to overthink, you can do any typical frontend setup + tools + frameworks here for Apps SDK
I haven’t felt so excited in a while. Apps in ChatGPT is really the future tbh. And Apps SDK was really well thought out.