<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Tom Kim</title>
    <description>The latest articles on DEV Community by Tom Kim (@__fa4ce91a04082dc401e7).</description>
    <link>https://dev.to/__fa4ce91a04082dc401e7</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3935049%2F3a314cb4-9dbb-4f7f-a46c-53e0eb7b4781.png</url>
      <title>DEV Community: Tom Kim</title>
      <link>https://dev.to/__fa4ce91a04082dc401e7</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/__fa4ce91a04082dc401e7"/>
    <language>en</language>
    <item>
      <title>Why I built a quiz tool for my coding class — and then an MCP server so I'd never leave Claude</title>
      <dc:creator>Tom Kim</dc:creator>
      <pubDate>Sat, 16 May 2026 15:19:06 +0000</pubDate>
      <link>https://dev.to/__fa4ce91a04082dc401e7/why-i-built-a-quiz-tool-for-my-coding-class-and-then-an-mcp-server-so-id-never-leave-claude-4aii</link>
      <guid>https://dev.to/__fa4ce91a04082dc401e7/why-i-built-a-quiz-tool-for-my-coding-class-and-then-an-mcp-server-so-id-never-leave-claude-4aii</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;I'm a coding instructor in Korea, and after every class I give students short review quizzes.&lt;/p&gt;

&lt;p&gt;Generating questions is easy now. ChatGPT or Claude can do that in seconds.&lt;/p&gt;

&lt;p&gt;The annoying part starts after that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Copy questions into Google Forms&lt;/li&gt;
&lt;li&gt;Send links (or screenshots) in a group chat&lt;/li&gt;
&lt;li&gt;Wait for submissions&lt;/li&gt;
&lt;li&gt;Grade everything manually&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The AI part took 10 seconds.&lt;/p&gt;

&lt;p&gt;The delivery + grading workflow took 30 minutes.&lt;/p&gt;

&lt;p&gt;That felt backwards.&lt;/p&gt;




&lt;h2&gt;
  
  
  So I Built a Small Tool
&lt;/h2&gt;

&lt;p&gt;I built a tool called Leafeep to remove the boring parts of the workflow.&lt;/p&gt;

&lt;p&gt;The flow is simple:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Paste AI-generated questions&lt;/li&gt;
&lt;li&gt;Instantly get a student link + QR code&lt;/li&gt;
&lt;li&gt;Students open it on their phone and solve&lt;/li&gt;
&lt;li&gt;Grade answers in grouped batches&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No student accounts. No app install.&lt;/p&gt;

&lt;p&gt;Just a fast way to go from “questions” → “responses”.&lt;/p&gt;




&lt;h2&gt;
  
  
  Then I Realized Something
&lt;/h2&gt;

&lt;p&gt;I already use Claude Code every day.&lt;/p&gt;

&lt;p&gt;So why was I still opening a browser to create quizzes?&lt;/p&gt;

&lt;p&gt;That led me to build an MCP server for the project.&lt;/p&gt;

&lt;p&gt;Now the workflow looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;me: "Make 5 Python list questions and send them to students"

Claude:
✓ Quiz created
✓ Student link generated
✓ Ready to share
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;me: "Grade the exam and summarize results"

Claude:
✓ 12 submissions
✓ 73% average score
✓ Q3 had the highest error rate
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;me: "Analyze weak points for student Kim"

Claude:
✓ Struggles with list slicing
✓ Improving on loops
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;At that point, the browser almost disappeared from the workflow.&lt;/p&gt;

&lt;p&gt;Creating → distributing → grading → analyzing all happened inside Claude.&lt;/p&gt;




&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Backend:&lt;/strong&gt; Kotlin + Spring Boot on EC2 ARM&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Frontend:&lt;/strong&gt; Next.js 16 + Vercel&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP Server:&lt;/strong&gt; TypeScript&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Auth:&lt;/strong&gt; Google OAuth + guest mode&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Analytics:&lt;/strong&gt; PostHog (cookieless)&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  What Building This Taught Me
&lt;/h2&gt;

&lt;p&gt;Before building this, I thought MCP was mainly useful for connecting LLMs to big external services like GitHub, Slack, or databases.&lt;/p&gt;

&lt;p&gt;Now I think the most interesting MCP servers are much smaller and more personal.&lt;/p&gt;

&lt;p&gt;They're wrappers around repetitive workflows.&lt;/p&gt;

&lt;p&gt;The things you do every day with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;predictable inputs&lt;/li&gt;
&lt;li&gt;repetitive clicks&lt;/li&gt;
&lt;li&gt;structured outputs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For me, that workflow was:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;questions in → student link out → answers in → grades out
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That ended up being a surprisingly good fit for MCP.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Web: leafeep.com&lt;/li&gt;
&lt;li&gt;MCP: github.com/xhae123/leafeep-mcp&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I originally built this for myself, but if you teach or tutor, I'd genuinely love feedback.&lt;/p&gt;

</description>
      <category>buildinpublic</category>
      <category>webdev</category>
      <category>education</category>
      <category>claude</category>
    </item>
  </channel>
</rss>
