Skip to main content
Glama

Convex MCP server

Official
by get-convex
ChartTooltip.tsx1.23 kB
import React from "react"; export function ChartTooltip({ active, payload, label, showLegend = false, extraContent, }: { active?: boolean; label: string; payload?: any[]; extraContent?: React.ReactNode; showLegend?: boolean; }) { if (active && payload && payload.length) { return ( <div className="rounded-sm border bg-background-secondary/70 p-2 text-right backdrop-blur-[2px] focus:outline-hidden"> <div className="text-xs font-semibold text-content-primary"> {label} </div> {payload.map((dataPoint) => ( <div key={dataPoint.name} className="flex items-center justify-end gap-1 tabular-nums" > {showLegend && ( <div className="h-0.5 w-2.5" style={{ backgroundColor: dataPoint.stroke, }} /> )} {dataPoint.formattedValue ? dataPoint.formattedValue : `${new Intl.NumberFormat("en-us").format(dataPoint.value)}${ dataPoint.name }`} </div> ))} {extraContent} </div> ); } return null; }

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