We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/debugmcpdev/mcp-debugger'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test-sse-fix.js•305 B
// Simple test script for debugging
function testFunction() {
const x = 10;
const y = 20;
const result = x + y; // Set breakpoint here (line 5)
console.log('Result:', result);
return result;
}
// Call the function
const output = testFunction();
console.log('Final output:', output);