We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/geopolitis/MCP-f-Secrets'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
def test_healthz(client):
r = client.get("/healthz")
assert r.status_code == 200
assert r.json().get("ok") is True
def test_livez(client):
r = client.get("/livez")
assert r.status_code == 200
assert r.json().get("ok") is True