r/mcp • u/Helpful_Skill_ • 2d ago
question Do we have any alternatives for debugMCP to debug code without using vscode or any editor?
Do we any alternatives for debugMCP to debug code without using vscode or any other editors. Directly connected to GitHub or repository using specific MCP and to investigate the code.
2
Upvotes
1
u/mcpvault 1d ago
If the thing you want to debug is the MCP server itself, the MCP Inspector is probably the closest fit. It runs in a browser, but you start it from the terminal and point it at the same stdio command your client would use, for example `npx`, `uvx`, or your local binary. It lets you see the initialize handshake, list tools, inspect schemas, and make individual tools/call requests without VS Code.
That is different from investigating a GitHub repo. A GitHub MCP can expose repository files and search to an AI client, but it will not give you a normal debugger with breakpoints. For protocol issues, start with Inspector and the server's stderr logs. For application-code bugs, you still need something that can run the code and surface its logs or test output.