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
debug_test_simple.py•496 B
import sys
import os
import time # Added for sleep
# Simple script for debugging tests
print("Python version:", sys.version)
print("Starting simple test script...")
# Code that would be debugged
def sample_function():
a = 5
b = 10
c = a + b
print(f"Result: {c}")
# Run the function
print("Running sample function...")
sample_function()
print("Debug test script is now sleeping for 60 seconds...")
time.sleep(60)
print("Debug test script finished sleeping and will now exit.")