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.py•309 B
#!/usr/bin/env python3
"""Simple test script for debugging"""
def main():
x = 10 # Line 4: First breakpoint
y = 20 # Line 5
result = x + y # Line 6: Second breakpoint
print(f"Result: {result}") # Line 7
return result # Line 8: Third breakpoint
if __name__ == "__main__":
main()