Skip to main content
Glama

Convex MCP server

Official
by get-convex
BigMetric.tsx966 B
import { cn } from "@ui/cn"; import { ReactNode } from "react"; export type MetricHealth = "healthy" | "warning" | "error"; export function BigMetric({ health, metric, children, }: { health?: MetricHealth; metric: string; children?: ReactNode; }) { return ( <div className="flex h-52 animate-fadeInFromLoading flex-col items-center justify-center gap-2 px-2 pb-2"> {/* eslint-disable-next-line no-restricted-syntax */} <div className={cn( // eslint-disable-next-line no-restricted-syntax "text-4xl font-semibold", { "text-content-success": health === "healthy", "text-content-warning": health === "warning", "text-content-error": health === "error", }, )} > {metric} </div> <div className="max-h-10 min-h-10 truncate text-center text-pretty text-content-secondary"> {children} </div> </div> ); }

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