Fluduro
Provides an MCP server that integrates with OpenAI's ChatGPT platform, enabling interactive quiz widgets rendered via the OpenAI Apps SDK.
Click on "Deploy 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., "@FluduroStart the flower personality quiz"
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.
Fluduro | A ChatGPT App Project
Fluduro is a simple personality-to-flower quiz application. This project was built to explore the OpenAI Apps SDK and the Model Context Protocol (MCP) by creating interactive widgets directly inside ChatGPT.
🛠️ Project Overview
The goal of this project was to learn how to:
Build an MCP Server that exposes tools and UI resources.
Use the OpenAI Apps SDK to render custom HTML/CSS widgets in ChatGPT.
Connect a local server to ChatGPT using ngrok.
Use an LLM (Groq) to dynamically generate quiz questions.
Tools & Resources:
Tools:
say_hello,start,submit_answers,show_results,get_quiz_state.UI Widgets: Welcome, Quiz, and Results screens.
Related MCP server: Hello Widget Example
📸 Visuals

<!-- slide -->

<!-- slide -->

<!-- slide -->
⚡ Local Setup
1. Installation
Clone the repository and install dependencies:
git clone <repository-url>
cd plantora
npm install2. Configuration
Create a .env file for your API keys:
cp .env.example .envAdd your Groq API Key to the API_KEY field. You can get one for free at console.groq.com.
3. Run and Tunnel
Start the server in HTTP mode and use ngrok to create a public HTTPS tunnel (required by ChatGPT):
# Terminal 1: Start the server
npm run start:http
# Terminal 2: Start ngrok on the same port
ngrok http 3553Take note of the public URL provided by ngrok (e.g., https://xyz.ngrok-free.dev).
🔗 How to Connect to ChatGPT
To test this app in ChatGPT, follow these steps:
Enable Developer Mode in ChatGPT (Settings → Apps & Connectors → Advanced settings).
In Settings → Connectors, click Create.
Select Streamable HTTP and paste your ngrok URL with the
/mcppath:https://your-id.ngrok-free.dev/mcpName it "Fluduro" and click Create.
Add the connector to a new chat and type "Start the quiz."
🤖 Tech Stack
Backend: Node.js with
@modelcontextprotocol/sdk.LLM: Groq (Llama 3.3 70B) for generating questions and analyzing traits.
Frontend: Vanilla HTML/CSS with Tailwind CSS (CDN) and Google Fonts.
Tunneling: ngrok.
📖 Key Learnings from the SDK
window.openaiBridge: Learned how to communicate between the widget iframe and the host.Theme Sync: Used
openai:set_globalsto make the UI adapt to ChatGPT's Dark/Light mode.Tool-Driven UI: Learned how to trigger UI changes from the model's tool outputs using
structuredContent.
Conclusion
This project served as a hands-on introduction to building native-feeling apps for the ChatGPT ecosystem. It focuses on the basics of tool registration, resource handling, and state management within the OpenAI Apps framework.
📸 Visuals - Screenshots For References
WELCOME SCREEN -LIGHT MODE

WELCOME SCREEN -DARK MODE

QUIZ SCREEN

RESULT SCREEN

This server cannot be deployed
Maintenance
Related MCP Connectors
MCP tool for governed nonclinical pattern interruption, emotional clarity, and next-step guidance.
Free MCP API to create AI chat personas for websites — upload knowledge, search, and chat
AI-native form builder: create, publish & read responses from Claude, ChatGPT & MCP.
OpenAI Ads MCP for ChatGPT Ads campaigns, creatives, audiences, insights, and conversions.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceA minimal ChatGPT app demonstrating interactive greeting widgets with confetti animations and theme support, built as an MCP server example using Smithery CLI.-
- FlicenseNot gradedqualityNot gradedmaintenanceA minimal ChatGPT app demonstrating interactive greeting widgets with confetti animations and theme support, built as a template for creating MCP servers with custom UI components.-
- FlicenseNot gradedqualityDmaintenanceA complete ChatGPT App implementation using MCP with OAuth2 authentication via Privy.io, enabling secure user authentication and interactive widgets rendered in ChatGPT.12 npm-
- FlicenseNot gradedqualityDmaintenanceAn MCP server that renders rich HTML widgets directly in ChatGPT for conference information. It provides schedule, speakers, and talk search functionality with themed UI components.14-