We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
use metrics::{
register_convex_histogram,
StatusTimer,
STATUS_LABEL,
};
register_convex_histogram!(
USAGE_TRACKING_WORKER_RUN_SECONDS,
"Duration of the usage tracking worker run",
&STATUS_LABEL,
);
pub fn usage_gauges_tracking_worker_timer() -> StatusTimer {
StatusTimer::new(&USAGE_TRACKING_WORKER_RUN_SECONDS)
}