
AI Study Planner — Groq AI + Notion MCP
This is a submission for the Notion MCP Challenge What I Built I built an AI Study Planner that generates personalized day-by-day study schedules using Groq AI and automatically syncs them to Notion via Notion MCP. Students enter: 📖 Exam name (e.g. JEE Mains, GATE, MBA) 📅 Number of study days ⏰ Hours available per day 🗓 Exam date The AI (Groq LLaMA 3.3) generates a smart topic-by-topic study plan and pushes it directly into a Notion database — creating structured entries with Task, Date, Exam Date, Hours, and Subject columns filled automatically. Video Demo Show us the code GitHub: https://github.com/sarveshm555/ai-study-planner 1. User fills the form const res = await fetch ( " http://localhost:5000/add-task " , { method : " POST " , body : JSON . stringify ({ subject , days , hours , examDate }) }); 2. Groq AI generates the study plan const aiResponse = await groq . chat . completions . create ({ model : " llama-3.3-70b-versatile " , messages : [{ role : " user " , content : `Create
Continue reading on Dev.to
Opens in a new tab

