How do I record a trace from Claude Desktop? #42
Answered
by
adityachilka1
adityachilka1
asked this question in
Q&A
|
I have |
Answered by
adityachilka1
May 22, 2026
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
Answer selected by
adityachilka1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Wrap the server with the mcp-devtools proxy in your Claude Desktop config.
Before:
After:
Restart Claude Desktop. The trace file is written to your current working directory.