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_perf_tracker.py•258 B
from tools.unified.perf import PerfTracker
import time
def test_perf_tracker_records_entries():
pt = PerfTracker()
d = pt.timeit()
time.sleep(0.01)
dur = d(True, name="x")
assert pt.records and pt.records[0]["name"] == "x" and dur > 0