<?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: XJTLU media</title>
    <description>The latest articles on DEV Community by XJTLU media (@xjtlu_media_385ce4bc67a1e).</description>
    <link>https://dev.to/xjtlu_media_385ce4bc67a1e</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%2F3751726%2F5a0fe8a1-e7f9-4cd5-bd3b-6f309533c5a3.png</url>
      <title>DEV Community: XJTLU media</title>
      <link>https://dev.to/xjtlu_media_385ce4bc67a1e</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/xjtlu_media_385ce4bc67a1e"/>
    <language>en</language>
    <item>
      <title>Stop Copy-Pasting AI Answers: How I Built an MCP Server for "Classroom-Ready" Exports</title>
      <dc:creator>XJTLU media</dc:creator>
      <pubDate>Wed, 04 Feb 2026 03:07:38 +0000</pubDate>
      <link>https://dev.to/xjtlu_media_385ce4bc67a1e/stop-copy-pasting-ai-answers-how-i-built-an-mcp-server-for-classroom-ready-exports-2e7i</link>
      <guid>https://dev.to/xjtlu_media_385ce4bc67a1e/stop-copy-pasting-ai-answers-how-i-built-an-mcp-server-for-classroom-ready-exports-2e7i</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdochgn35gc0gt0meqlfb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdochgn35gc0gt0meqlfb.png" alt=" " width="800" height="530"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We’ve all been there. You ask Claude or ChatGPT to generate 20 complex physics questions. The output is brilliant, but then the "Final Mile" friction hits.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You spend the next 45 minutes:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Fixing LaTeX formulas that broke during the copy-paste.&lt;/li&gt;
&lt;li&gt;Re-formatting bullet points into a CSV template for Kahoot or Quizizz.&lt;/li&gt;
&lt;li&gt;Wrestling with Word margins to make a printable PDF.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Generating the content took 10 seconds. Formatting it took an hour. That is a broken developer/educator experience.&lt;/p&gt;

&lt;h4&gt;
  
  
  The Solution: Model Context Protocol (MCP)
&lt;/h4&gt;

&lt;p&gt;Instead of manually bridging the gap between the AI's "brain" and my local files, I built an MCP Server that allows the AI to handle the export itself.&lt;/p&gt;

&lt;p&gt;With the AI Question Copier acting as an MCP server, you don't hit Ctrl+C. You just tell the AI:&lt;/p&gt;

&lt;p&gt;"I like these questions. Export them as a Quizizz CSV and a printable PDFHandout."&lt;/p&gt;

&lt;p&gt;The AI "sees" the available tools, parses its own reasoning into the correct schema, and triggers the file generation locally.&lt;/p&gt;

&lt;h4&gt;
  
  
  Tech Stack
&lt;/h4&gt;

&lt;p&gt;Language: TypeScript / Node.js&lt;/p&gt;

&lt;p&gt;Protocol: Model Context Protocol (MCP)&lt;/p&gt;

&lt;p&gt;Parsing: Intelligent regex-based "Smart-Parse" for Q&amp;amp;A structures.&lt;/p&gt;

&lt;p&gt;Outputs: PDF (handouts), XLSX (Quizizz/Kahoot), JSON (LMS), and Markdown.&lt;/p&gt;

&lt;h4&gt;
  
  
  How to use it in 60 seconds
&lt;/h4&gt;

&lt;p&gt;If you’re using Claude Desktop, you can bind this tool by adding it to your claude_desktop_config.json:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"question-exporter"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"node"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"/PATH_TO_PROJECT/mcp-server/dist/index.js"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Once restarted, you'll see the 🔌 icon. Your AI is now an automated education assistant.&lt;/p&gt;

&lt;h4&gt;
  
  
  Why this matters
&lt;/h4&gt;

&lt;p&gt;We are moving away from "Chatbots" and toward "Actionable Agents." MCP is the "USB-C for AI"—a standardized way to let models interact with the world securely. Whether you are a teacher, a developer, or a technical trainer, removing the "copy-paste tax" is the first step toward true productivity.&lt;/p&gt;

&lt;p&gt;You are welcomed to view my project at &lt;a href="https://github.com/XJTLUmedia/MCP_Markdown_Formatter" rel="noopener noreferrer"&gt;MCP_Markdown_Formatter&lt;/a&gt;&lt;/p&gt;

</description>
      <category>automation</category>
      <category>mcp</category>
      <category>productivity</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
