We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Zazzles2908/EX_AI-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_audit_logger.py•259 B
from audit.audit_logger import AuditLogger
def test_audit_logger_records():
a = AuditLogger()
a.log(user="u1", tool="analyze", params={"x": 1}, success=True)
assert a.records and a.records[0]["user"] == "u1" and a.records[0]["success"] is True