@debugmcp/mcp-debugger
Version:
Run-time step-through debugging for LLM agents.
13 lines (10 loc) • 318 B
JavaScript
// Mock script for testing the mock adapter
// This file doesn't need to be executable, just exists for path validation
function main() {
var x = 10; // Line 4
var y = 20; // Line 5
var result = x + y; // Line 6
console.log("Result: " + result); // Line 7
return result; // Line 8
}
main();