惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
L
LangChain Blog
C
Check Point Blog
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
美团技术团队
博客园 - 司徒正美
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
腾讯CDC
B
Blog
G
Google Developers Blog
The Cloudflare Blog
P
Proofpoint News Feed

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Built Postman for MCP Servers Because Debugging JSON-RP...
Naman Gupta · 2026-04-26 · via DEV Community

If you're building with the Model Context Protocol (MCP), you already know the pain.

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

There had to be a better way. So I built one.


Meet MCPHub — The Postman for MCP

Live: mcp-hub-pi.vercel.app
GitHub: github.com/namanxdev/MCPHub
NPM Agent: @naman_411/mcphub-agent

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


The Problem: MCP Debugging Is Still Stuck in 2010

MCP is genuinely the future of how LLMs interact with the world. But the developer experience? It's basically:

  1. Write a server
  2. Fire up your AI client
  3. Hope it works
  4. If it doesn't, add console.log everywhere and pray

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.

That friction kills iteration speed. And when you're building AI agents, iteration speed is everything.


What MCPHub Actually Does

🛠️ The Playground — Stop Writing curl Commands

Paste your SSE endpoint or local command. MCPHub auto-generates clean input forms directly from your tool's JSON Schema.

Fill in arguments → Hit Run → See the raw response instantly.

No more hand-crafting JSON-RPC payloads. No more guessing if your schema is malformed.

Screen shot of github mcp tools


🕵️‍♂️ Protocol Inspector — See Everything Over the Wire

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.

It's the transparency MCP development has been missing.


🖥️ Desktop Agent — Your Localhost, But Cloud-Connected

Here's the catch-22: your deployed playground can't talk to localhost. The @naman_411/mcphub-agent npm package fixes that.

ScreenShot of npm package of mcphub

npm install -g @naman_411/mcphub-agent
mcphub-agent start

Enter fullscreen mode Exit fullscreen mode

A WebSocket bridge connects your local MCP servers directly to the MCPHub web app. Green banner pops up. Toggle it on. Done.


📊 Health Dashboard — Know Before Your Users Do

Real P50 / P95 / P99 latency metrics. Error rate tracking. Uptime monitoring per tool. Not vanity numbers actual production signals.


🌐 Public Registry — Discover & Test Community Servers

Searchable directory of community MCP servers with live status badges. One-click testing. No clone-and-run required.


The Stack (For The Curious)

Layer Tech
Framework Next.js 16 (App Router, React 19)
Language TypeScript 5
Styling Tailwind CSS 4 + shadcn/ui
State Zustand 5
Database Neon PostgreSQL + Drizzle ORM
Auth NextAuth.js v5 (GitHub + Google)
MCP SDK @modelcontextprotocol/sdk
Charts Recharts
Deploy Vercel

Why Open Source?

Because MCP itself is an open protocol. The tooling around it should be too.

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.


Try It In 30 Seconds


If you've been wrestling with MCP servers, this is for you. If you haven't started yet this is your excuse to.

What's the most painful part of MCP development for you right now? Drop it in the comments. I might just build the fix next.