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
pause_test.py•536 B
#!/usr/bin/env python3
"""
Test script that pauses for user input to allow debugging testing.
"""
def main():
"""Main function with variables for testing."""
x = 10
y = 20
result = x + y
message = "Testing debugger"
print("Before input - set breakpoint here")
# This line will pause execution
user_input = input("Press Enter to continue: ")
print(f"After input: {user_input}")
final_result = result * 2
print(f"Final result: {final_result}")
if __name__ == "__main__":
main()