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
simple-mock.js•318 B
// 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();