Skip to main content
Glama

Convex MCP server

Official
by get-convex
log.ts619 B
const awsConsole = console; let globalStdoutLogEnabled = false; export function setDebugLogging(enabled: boolean) { globalStdoutLogEnabled = enabled; } // Logs and returns the elapsed time in milliseconds. export function logDurationMs(label: string, start: number): number { const elapsed = performance.now() - start; if (globalStdoutLogEnabled) { awsConsole.log(`${label}: ${elapsed.toFixed(2)}ms`); } return elapsed; } export function logDebug(message: string) { if (globalStdoutLogEnabled) { awsConsole.log(message); } } export function log(message: string) { awsConsole.log(message); }

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