We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shanirap/MCP-SERVER'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
calc.py•193 B
def add(a: int, b: int) -> int:
return a + b
def divide(a: int, b: int) -> float:
# BUG: should raise on b==0, but currently returns 0
if b == 0:
return 0
return a / b