<?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: Prabhakaran Jayaraman Masani</title>
    <description>The latest articles on DEV Community by Prabhakaran Jayaraman Masani (@prabhakaranjm).</description>
    <link>https://dev.to/prabhakaranjm</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%2F1035960%2Fcb2c3885-e309-461b-8e99-774510d7e754.png</url>
      <title>DEV Community: Prabhakaran Jayaraman Masani</title>
      <link>https://dev.to/prabhakaranjm</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/prabhakaranjm"/>
    <language>en</language>
    <item>
      <title>How I Built MCP Time-Traveler with Kiro: A Developer’s Journey Through Vibe Coding, Specs, Steering, Hooks, and MCP</title>
      <dc:creator>Prabhakaran Jayaraman Masani</dc:creator>
      <pubDate>Tue, 02 Dec 2025 23:44:14 +0000</pubDate>
      <link>https://dev.to/prabhakaranjm/how-i-built-mcp-time-traveler-with-kiro-a-developers-journey-through-vibe-coding-specs-m7g</link>
      <guid>https://dev.to/prabhakaranjm/how-i-built-mcp-time-traveler-with-kiro-a-developers-journey-through-vibe-coding-specs-m7g</guid>
      <description>&lt;p&gt;When the Kiroween Hackathon was announced, I wanted to try something different — something playful, something nostalgic, and something that would push the boundaries of what an AI-powered IDE like Kiro could help me build.&lt;/p&gt;

&lt;p&gt;Most hackathon projects either look forward into the future or try to solve an immediate problem.&lt;br&gt;
I wanted to look backward.&lt;/p&gt;

&lt;p&gt;That’s how I came up with MCP Time-Traveler — an app that reconstructs historical tech stacks from 2015 to 2025 across Node, Python, and Ruby, using real version data from npm, PyPI, and RubyGems.&lt;/p&gt;

&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%2Fj92vprpqqszqangv264l.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%2Fj92vprpqqszqangv264l.png" alt=" " width="627" height="926"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What surprised me most wasn’t the idea.&lt;br&gt;
It was how quickly Kiro turned it into a real, working project.&lt;/p&gt;

&lt;p&gt;This is the story of how it came to life.&lt;/p&gt;

&lt;p&gt;🌱 Where the Idea Started&lt;/p&gt;

&lt;p&gt;Developers often discuss “what stack should I use?”&lt;br&gt;
But rarely do we ask, “what did this stack look like five or ten years ago?”&lt;/p&gt;

&lt;p&gt;I imagined a simple interface:&lt;/p&gt;

&lt;p&gt;Choose a language → choose a framework → pick a year → get the entire runtime + dependency stack for that year.&lt;/p&gt;

&lt;p&gt;But the real twist was this:&lt;/p&gt;

&lt;p&gt;I didn’t want to fake the data.&lt;br&gt;
I wanted to fetch it from real package registries.&lt;/p&gt;

&lt;p&gt;To get there, I needed multiple moving pieces:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A frontend&lt;/li&gt;
&lt;li&gt;An API&lt;/li&gt;
&lt;li&gt;A shared types layer&lt;/li&gt;
&lt;li&gt;A custom MCP server&lt;/li&gt;
&lt;li&gt;Real registry integrations&lt;/li&gt;
&lt;li&gt;Kiro support end-to-end&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As a solo developer, that’s a lot.&lt;br&gt;
But Kiro made it feel surprisingly manageable.&lt;/p&gt;

&lt;p&gt;⚡ Vibe Coding: Turning Loose Thoughts into a Real Project&lt;/p&gt;

&lt;p&gt;I started with vibe coding — simply talking to Kiro about the concept.&lt;/p&gt;

&lt;p&gt;Within minutes, Kiro created:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A full monorepo structure&lt;/li&gt;
&lt;li&gt;An Express API&lt;/li&gt;
&lt;li&gt;A React/Vite frontend&lt;/li&gt;
&lt;li&gt;Shared TypeScript types&lt;/li&gt;
&lt;li&gt;A starter MCP server&lt;/li&gt;
&lt;li&gt;Initial routes and validation logic&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What stood out most was that the project didn’t feel like a patchwork of generated snippets.&lt;br&gt;
Kiro aligned each part with the others, right from the beginning.&lt;/p&gt;

&lt;p&gt;It felt like I was pair-programming with an engineer who understood architecture.&lt;/p&gt;

&lt;p&gt;📘 Specs: Moving from Exploration to Structure&lt;/p&gt;

&lt;p&gt;Once the idea was clear, I moved into spec-driven development, which Kiro handles beautifully.&lt;/p&gt;

&lt;p&gt;I wrote two spec files:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;.kiro/specs/app-spec.md&lt;/li&gt;
&lt;li&gt;.kiro/specs/mcp-spec.md&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;These specs defined:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Input/output contracts&lt;/li&gt;
&lt;li&gt;Type structures&lt;/li&gt;
&lt;li&gt;Expected API behavior&lt;/li&gt;
&lt;li&gt;Input validation&lt;/li&gt;
&lt;li&gt;Error shapes&lt;/li&gt;
&lt;li&gt;Integration points&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After that, I could simply tell Kiro:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;“Update the API implementation based on the current spec.”&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;And Kiro updated everything — API routes, types, helpers — consistently across the monorepo.&lt;/p&gt;

&lt;p&gt;Specs transformed the project from something exploratory into something internally coherent.&lt;/p&gt;

&lt;p&gt;🎛 Steering Docs: Teaching Kiro My Preferences&lt;/p&gt;

&lt;p&gt;AI systems generate excellent code, but consistency matters in large codebases.&lt;/p&gt;

&lt;p&gt;So I added .kiro/steering/coding-style.md to describe:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Naming conventions&lt;/li&gt;
&lt;li&gt;Error formats&lt;/li&gt;
&lt;li&gt;TypeScript patterns&lt;/li&gt;
&lt;li&gt;Folder structure rules&lt;/li&gt;
&lt;li&gt;Expected comments&lt;/li&gt;
&lt;li&gt;File layout preferences&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The result?&lt;/p&gt;

&lt;p&gt;Every part of the project — whether generated on day one or day five — looked like it came from the same author.&lt;br&gt;
This eliminated cleanup time and made iteration much faster.&lt;/p&gt;

&lt;p&gt;🔌 The MCP Server: The Heart of the Project&lt;/p&gt;

&lt;p&gt;The custom MCP server is what makes MCP Time-Traveler more than a demo.&lt;/p&gt;

&lt;p&gt;I built three MCP tools:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;npm historical version lookup&lt;/li&gt;
&lt;li&gt;PyPI historical version lookup&lt;/li&gt;
&lt;li&gt;RubyGems version lookup&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Kiro helped generate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The MCP tool schema&lt;/li&gt;
&lt;li&gt;Validation logic&lt;/li&gt;
&lt;li&gt;Error handling&lt;/li&gt;
&lt;li&gt;The tool handler implementation&lt;/li&gt;
&lt;li&gt;EOF-safe request/response types&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The MCP layer allowed the app to fetch real, accurate ecosystem data — not hardcoded values.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Node 4.9.1 + Express 4.13.4 for 2015&lt;/li&gt;
&lt;li&gt;Python 3.7.17 + Django 2.1.15 for 2018&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Seeing real historical stacks appear in the UI felt magical.&lt;/p&gt;

&lt;p&gt;🔁 Hooks: Automating the Workflows That Slow You Down&lt;/p&gt;

&lt;p&gt;To keep things consistent, I added two Kiro agent hooks:&lt;/p&gt;

&lt;p&gt;1️⃣ Scaffold regeneration hook&lt;/p&gt;

&lt;p&gt;Triggered whenever specs changed, ensuring project structure stayed aligned.&lt;/p&gt;

&lt;p&gt;2️⃣ Pre-commit hook&lt;/p&gt;

&lt;p&gt;Performed type checks + lightweight build steps.&lt;/p&gt;

&lt;p&gt;These hooks acted like guardrails.&lt;br&gt;
As a solo developer, they helped maintain discipline and consistency — without me having to remember every detail.&lt;/p&gt;

&lt;p&gt;☁️ Deploying the Full Project&lt;/p&gt;

&lt;p&gt;The final structure:&lt;br&gt;
&lt;strong&gt;API&lt;/strong&gt;→ deployed to Heroku&lt;br&gt;
&lt;strong&gt;Frontend&lt;/strong&gt; → deployed to Vercel&lt;br&gt;
&lt;strong&gt;MCP Server&lt;/strong&gt; → runs locally for Kiro during development&lt;br&gt;
&lt;strong&gt;GitHub Repo&lt;/strong&gt; → public, open source, MIT licensed&lt;/p&gt;

&lt;p&gt;You can try it here:&lt;/p&gt;

&lt;p&gt;🔗 Frontend:&lt;br&gt;
&lt;a href="https://mcp-time-traveler.vercel.app/" rel="noopener noreferrer"&gt;https://mcp-time-traveler.vercel.app/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🔗 API health endpoint:&lt;br&gt;
&lt;a href="https://mcp-time-traveler-api-04b9f0b0b1ae.herokuapp.com/health" rel="noopener noreferrer"&gt;https://mcp-time-traveler-api-04b9f0b0b1ae.herokuapp.com/health&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🔗 Source code:&lt;br&gt;
&lt;a href="https://github.com/prabhakaran-jm/mcp-time-traveler" rel="noopener noreferrer"&gt;https://github.com/prabhakaran-jm/mcp-time-traveler&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;💡 What This Project Taught Me&lt;/p&gt;

&lt;p&gt;Building MCP Time-Traveler showed me:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How AI-powered IDEs elevate solo developers&lt;/li&gt;
&lt;li&gt;How vibe coding excels at early exploration&lt;/li&gt;
&lt;li&gt;How specs enforce structure and long-term consistency&lt;/li&gt;
&lt;li&gt;How steering docs unify the codebase&lt;/li&gt;
&lt;li&gt;How MCP bridges AI and real-world data&lt;/li&gt;
&lt;li&gt;How hooks automate away repetitive tasks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Kiro didn’t just help me build faster.&lt;br&gt;
It helped me build more cleanly, more predictably, and more enjoyably.&lt;/p&gt;

&lt;p&gt;🎃 Final Thoughts&lt;/p&gt;

&lt;p&gt;When I started this project, I thought the MCP server would be the hardest part. Turns out, the hardest part was believing that an AI-assisted IDE could actually guide a full multi-service build.&lt;/p&gt;

&lt;p&gt;But Kiro did — consistently, reliably, and creatively.&lt;/p&gt;

&lt;p&gt;MCP Time-Traveler became more than just a hackathon project.&lt;br&gt;
It became a blueprint for how I want to build future tools.&lt;/p&gt;

&lt;h1&gt;
  
  
  kiro
&lt;/h1&gt;

</description>
      <category>programming</category>
      <category>ai</category>
      <category>tooling</category>
      <category>kiro</category>
    </item>
  </channel>
</rss>
