A visual debugger and test client for Model Context Protocol (MCP) servers.
{
"mcpServers": {
"mcp-workbench": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A visual debugger and test client for Model Context Protocol (MCP) servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 91 days ago. 2 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
An open-source AI agent that brings the power of Gemini directly into your terminal.
The full-stack TypeScript framework to build, test, and deploy production-ready MCP servers and AI-native apps.
Open-source persistent memory for AI agent pipelines (LangGraph, CrewAI, AutoGen) and Claude. REST API + knowledge graph + autonomous consolidation.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Workbench and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A visual debugger and test client for Model Context Protocol (MCP) servers.
MCP Workbench lets you connect to an MCP server over Streamable HTTP, inspect protocol traffic, explore resources, and execute tools with zero guesswork. It’s built for developers who want fast feedback and full visibility into what their server is actually doing.
If you’re building or maintaining an MCP server, this is your control panel.
Streamable HTTP Client**
Session handling via MCP-Session-Id
Auto-generated input forms from JSON Schema
Execute tools and inspect raw responses
Browse and inspect server-exposed resources
List and test available prompts
Authentication Support
Multi-Server Configs
git clone https://github.com/conductoross/mcp-workbench.git
cd mcp-workbench
npm install
npm run dev
Open:
http://localhost:5173
To connect the Workbench to a local MCP server running over Stdio (e.g. node server.js), use the included Bridge script:
Run the bridge with your command:
node scripts/stdio-bridge.js "node my-server.js"
# or for Python
node scripts/stdio-bridge.js "uv run main.py"
Copy the URL printed (e.g., http://localhost:3001/mcp)
In Workbench, select Streamable HTTP and paste the URL.
Your MCP server must allow cross-origin requests from the Workbench origin. If CORS is misconfigured, requests will fail silently in the browser.
Safari requires an additional CORS header for localhost:
Access-Control-Allow-Private-Network: true
Add this to your server's CORS middleware. Chrome and Firefox are more permissive.
Pull requests are welcome. Keep changes focused, readable, and aligned with MCP specifications.