How do I record a trace from Claude Desktop? #49
Unanswered
adityachilka1
asked this question in
Q&A
Replies: 1 comment
|
Wrap the server with the mcp-devtools proxy in your Claude Desktop config. Before: "filesystem": { "command": "npx", "args": ["@modelcontextprotocol/server-filesystem", "/tmp"] }After: "filesystem": { "command": "npx", "args": ["@adityachilka/mcp-devtools", "proxy", "--record", "trace.mcptrace", "--", "npx", "@modelcontextprotocol/server-filesystem", "/tmp"] }Restart Claude Desktop. The trace file is written to your current working directory. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I have
@modelcontextprotocol/server-filesystemconfigured in Claude Desktop. How do I capture a.mcptraceof every JSON-RPC frame it sends/receives?All reactions