Skip to main content
Glama

Convex MCP server

Official
by get-convex
metrics.rs680 B
pub mod storage { use metrics::{ log_counter, register_convex_counter, }; register_convex_counter!(STORAGE_INGRESS_BYTES, "Number of storage ingress bytes "); register_convex_counter!(STORAGE_EGRESS_BYTES, "Number of storage egress bytes"); pub fn log_storage_ingress_size(ingress_size: u64) { log_counter(&STORAGE_INGRESS_BYTES, ingress_size); } pub fn log_storage_egress_size(egress_size: u64) { log_counter(&STORAGE_EGRESS_BYTES, egress_size); } register_convex_counter!(STORAGE_CALLS_TOTAL, "Total calls to storage"); pub fn log_storage_call() { log_counter(&STORAGE_CALLS_TOTAL, 1) } }

MCP directory API

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