<?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: Naman Gupta</title>
    <description>The latest articles on DEV Community by Naman Gupta (@naman_411).</description>
    <link>https://dev.to/naman_411</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%2F3795186%2Fbf140888-d347-4926-bc0c-448a7724a6ff.png</url>
      <title>DEV Community: Naman Gupta</title>
      <link>https://dev.to/naman_411</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/naman_411"/>
    <language>en</language>
    <item>
      <title>I Built Postman for MCP Servers Because Debugging JSON-RPC Shouldn't Be Hell</title>
      <dc:creator>Naman Gupta</dc:creator>
      <pubDate>Sun, 26 Apr 2026 08:21:24 +0000</pubDate>
      <link>https://dev.to/naman_411/i-built-postman-for-mcp-servers-because-debugging-json-rpc-shouldnt-be-hell-44ao</link>
      <guid>https://dev.to/naman_411/i-built-postman-for-mcp-servers-because-debugging-json-rpc-shouldnt-be-hell-44ao</guid>
      <description>&lt;p&gt;If you're building with the &lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt;, you already know the pain.&lt;/p&gt;

&lt;p&gt;You write a server. You wire it up to Claude, Cursor, or your own agent. And then... you spend the next 3 hours running &lt;code&gt;curl&lt;/code&gt; commands, squinting at raw JSON-RPC payloads, and guessing why your tool schema isn't being picked up.&lt;/p&gt;

&lt;p&gt;There had to be a better way. So I built one.&lt;/p&gt;




&lt;h2&gt;
  
  
  Meet MCPHub — The Postman for MCP
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Live:&lt;/strong&gt; &lt;a href="https://mcp-hub-pi.vercel.app" rel="noopener noreferrer"&gt;mcp-hub-pi.vercel.app&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/namanxdev/MCPHub" rel="noopener noreferrer"&gt;github.com/namanxdev/MCPHub&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;NPM Agent:&lt;/strong&gt; &lt;code&gt;@naman_411/mcphub-agent&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It's an open-source platform to &lt;strong&gt;develop, debug, and deploy&lt;/strong&gt; MCP servers without losing your sanity. No bloat. No hand-holding. Just the tools you actually need.&lt;/p&gt;


&lt;h2&gt;
  
  
  The Problem: MCP Debugging Is Still Stuck in 2010
&lt;/h2&gt;

&lt;p&gt;MCP is genuinely the future of how LLMs interact with the world. But the developer experience? It's basically:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Write a server&lt;/li&gt;
&lt;li&gt;Fire up your AI client&lt;/li&gt;
&lt;li&gt;Hope it works&lt;/li&gt;
&lt;li&gt;If it doesn't, add &lt;code&gt;console.log&lt;/code&gt; everywhere and pray&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;There's zero visibility into the wire protocol. No easy way to test individual tools. No metrics to tell you if your server is slow or just broken.&lt;/p&gt;

&lt;p&gt;That friction kills iteration speed. And when you're building AI agents, iteration speed is everything.&lt;/p&gt;


&lt;h2&gt;
  
  
  What MCPHub Actually Does
&lt;/h2&gt;
&lt;h3&gt;
  
  
  🛠️ The Playground — Stop Writing &lt;code&gt;curl&lt;/code&gt; Commands
&lt;/h3&gt;

&lt;p&gt;Paste your SSE endpoint or local command. MCPHub auto-generates clean input forms directly from your tool's JSON Schema.&lt;/p&gt;

&lt;p&gt;Fill in arguments → Hit &lt;strong&gt;Run&lt;/strong&gt; → See the raw response instantly.&lt;/p&gt;

&lt;p&gt;No more hand-crafting JSON-RPC payloads. No more guessing if your schema is malformed.&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%2Fygaw2h7ve8pyke1roiac.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%2Fygaw2h7ve8pyke1roiac.png" alt="Screen shot of github mcp tools" width="800" height="360"&gt;&lt;/a&gt;&lt;/p&gt;


&lt;h3&gt;
  
  
  🕵️‍♂️ Protocol Inspector — See Everything Over the Wire
&lt;/h3&gt;

&lt;p&gt;Every single JSON-RPC message is captured, parsed, and displayed with syntax highlighting. Filter by direction (client → server or vice versa), inspect headers, and spot malformed tool definitions before they hit production.&lt;/p&gt;

&lt;p&gt;It's the transparency MCP development has been missing.&lt;/p&gt;


&lt;h3&gt;
  
  
  🖥️ Desktop Agent — Your Localhost, But Cloud-Connected
&lt;/h3&gt;

&lt;p&gt;Here's the catch-22: your deployed playground can't talk to &lt;code&gt;localhost&lt;/code&gt;. The &lt;code&gt;@naman_411/mcphub-agent&lt;/code&gt; npm package fixes that.&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%2Ff2iyhc15h5udrufxpp6y.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%2Ff2iyhc15h5udrufxpp6y.png" alt="ScreenShot of npm package of mcphub" width="800" height="355"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; @naman_411/mcphub-agent
mcphub-agent start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;A WebSocket bridge connects your local MCP servers directly to the MCPHub web app. Green banner pops up. Toggle it on. Done.&lt;/p&gt;




&lt;h3&gt;
  
  
  📊 Health Dashboard — Know Before Your Users Do
&lt;/h3&gt;

&lt;p&gt;Real &lt;strong&gt;P50 / P95 / P99&lt;/strong&gt; latency metrics. Error rate tracking. Uptime monitoring per tool. Not vanity numbers actual production signals.&lt;/p&gt;




&lt;h3&gt;
  
  
  🌐 Public Registry — Discover &amp;amp; Test Community Servers
&lt;/h3&gt;

&lt;p&gt;Searchable directory of community MCP servers with live status badges. One-click testing. No clone-and-run required.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Stack (For The Curious)
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Layer&lt;/th&gt;
&lt;th&gt;Tech&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Framework&lt;/td&gt;
&lt;td&gt;Next.js 16 (App Router, React 19)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Language&lt;/td&gt;
&lt;td&gt;TypeScript 5&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Styling&lt;/td&gt;
&lt;td&gt;Tailwind CSS 4 + shadcn/ui&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;State&lt;/td&gt;
&lt;td&gt;Zustand 5&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Database&lt;/td&gt;
&lt;td&gt;Neon PostgreSQL + Drizzle ORM&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Auth&lt;/td&gt;
&lt;td&gt;NextAuth.js v5 (GitHub + Google)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MCP SDK&lt;/td&gt;
&lt;td&gt;@modelcontextprotocol/sdk&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Charts&lt;/td&gt;
&lt;td&gt;Recharts&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Deploy&lt;/td&gt;
&lt;td&gt;Vercel&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Why Open Source?
&lt;/h2&gt;

&lt;p&gt;Because MCP itself is an open protocol. The tooling around it should be too.&lt;/p&gt;

&lt;p&gt;I'm building this entirely in public. Break it, fork it, tell me what's missing. The roadmap is driven by real pain points, not investor decks.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try It In 30 Seconds
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Web App:&lt;/strong&gt; &lt;a href="https://mcp-hub-pi.vercel.app" rel="noopener noreferrer"&gt;mcp-hub-pi.vercel.app&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Drop a star ⭐&lt;/strong&gt; on &lt;a href="https://github.com/namanxdev/MCPHub" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; if it saves you time&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Local bridge:&lt;/strong&gt; &lt;code&gt;npx @naman_411/mcphub-agent start&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;If you've been wrestling with MCP servers, this is for you. If you haven't started yet this is your excuse to.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What's the most painful part of MCP development for you right now?&lt;/strong&gt; Drop it in the comments. I might just build the fix next.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>debugging</category>
      <category>mcp</category>
    </item>
  </channel>
</rss>
