mcp-debug-claude-desktop
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-debug-claude-desktopRun ping then echo to check if my tool call reaches the server"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-debug-claude-desktop
Filed as anthropics/claude-code#83908.
A minimal instrumented MCP server for answering one question: when a tool call goes missing in Claude Desktop, where does it go?
Claude Desktop reports lost tool calls as "the local MCP server may be unresponsive, crashed, or not running." This repository checks that claim instead of believing it. For every message it records whether bytes arrived on stdin, whether they parsed, whether a handler ran, whether a response was written, and whether that write went through.
What it found
A tool call is dispatched only if its chat is the active chat at the moment of dispatch — which happens 5–45 seconds after you submit. Open a different chat in that window and the call is discarded: nothing reaches the server, no retry, no log entry anywhere in the client. Four minutes later the user is told the local server has crashed.
Ruled out with the measurement that refuted each: server crash, back-pressure, the approval dialog, deferred tool loading, Electron background throttling. Details in BUG_REPORT.md.
Related MCP server: my-mcp-server
Quick start
npm install
npm run build
npm run test:backpressure # verify the instrument before trusting itAdd to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"mcp-debug": {
"command": "/absolute/path/to/node",
"args": ["/absolute/path/to/mcp-debug-claude-desktop/dist/server.js"]
}
}
}Both paths absolute; command is the output of which node. Restart Claude Desktop, use a tool,
then npm run analyse:
rpc_id method / tool stdin parsed handler stdout verdict
0 initialize 245 B yes — 162 B ok complete
2 tools/call echo 108 B yes 0 ms 87 B ok complete
pid ppid requests responses blocked role
37265 37257 10 10 0 active — 8 tool call(s)
37270 37266 2 2 0 handshake only — no tool call ever
4 of 12 expected tool calls never reached any server process.PROTOCOL.md is the full reproduction procedure.
The tools
Tool | Purpose |
| Smallest round trip. Returns a per-process sequence number — an unbroken sequence proves the server never restarted |
| Returns its |
| Returns |
| Returns after |
What gets recorded
One JSON object per line in captures/. Never to stdout — stdout is the protocol channel.
Record | Contents |
| pid, ppid, argv, node version, start time |
| Bytes in both directions, before any parsing |
| The JSON-RPC message those bytes became |
| Bytes that never became a message |
| Start and end of each tool handler |
| The synchronous result of |
| Emitted immediately when a write does not go through |
| When the write completed, and how long it waited |
| stdin end/close/error, stdout |
Two details the measurement depends on. stdin is teed through a PassThrough, with the capture
listener registered before the transport's, so no byte is consumed before it is recorded.
process.stdout.write is replaced, not wrapped — a wrapper's own buffer would report success
while the real stdout was blocked, and the blocked record is written synchronously, because a
client that stopped reading never fires drain.
Verifying the instrument
npm run test:backpressureRuns the server against a consumer that never reads, and asserts the detector fires: 24 tool calls, 24 blocked writes, 1 delivered. An instrument that has never triggered cannot be trusted when it stays silent.
Layout
src/server.ts the MCP server and its four tools
src/capture.ts the capture file and the record formats
src/wire.ts stdin tee and the stdout replacement
src/analyse.ts npm run analyse
src/test/backpressure.ts npm run test:backpressure
samples/ a small capture, plus the reference run behind the report
issues/ the reports as submittedPrivacy
The tools are synthetic: they return fixed strings, filler, or their own arguments. captures/ is
gitignored; the committed samples have paths replaced. Claude Desktop's own logs are different —
they contain organisation and conversation UUIDs, and claude_desktop_config.json may contain API
keys. See PROTOCOL.md before attaching anything.
Requirements
Node ≥ 20. One dependency, @modelcontextprotocol/sdk, pinned to 1.30.0.
MIT — see LICENSE.
I am currently looking for a new position; if this is the kind of work you need, you can reach me at sascha.rose@gmail.com.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Alicense-qualityDmaintenanceA Machine Context Protocol server that enables Claude AI to interact with tools through a structured communication interface, following standard MCP patterns with server initialization and stdio transport.Last updated1,8612MIT
- Flicense-qualityDmaintenanceA Model Context Protocol server that allows integration with Claude Desktop by creating and managing custom tools that can be executed through the MCP framework.Last updated46
- AlicenseCqualityDmaintenanceA Model Context Protocol (MCP) server that demonstrates how to build and implement custom tools for Claude using the mcp-framework.Last updated10ISC
- Alicense-qualityDmaintenanceA Node.js/TypeScript MCP server template with sample tools (ping and system_info) that demonstrates how to build custom tools for Claude Desktop using stdio transport.Last updated14ISC
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rsascha/mcp-debug-claude-desktop'
If you have feedback or need assistance with the MCP directory API, please join our Discord server