We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/calisweetleaf/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_analysis.py•202 B
def factorial(n):
if n <= 1:
return 1
return n * factorial(n - 1)
def main():
result = factorial(5)
print(f"Factorial of 5 is: {result}")
if __name__ == "__main__":
main()