Skip to main content
Glama

Convex MCP server

Official
by get-convex
DataPanel.tsx1.3 kB
import { ReactNode } from "react"; import { ClosePanelButton } from "@ui/ClosePanelButton"; import { Panel } from "react-resizable-panels"; import { ResizeHandle } from "@common/layouts/SidebarDetailLayout"; export interface DataPanelProps { title: ReactNode; onClose: () => void; children: ReactNode; "data-testid"?: string; } export function DataPanel({ title, onClose, children, ...props }: DataPanelProps) { return ( <> <ResizeHandle direction="left" collapsed={false} className="ml-6" /> <Panel className="z-40 flex h-full max-w-[42rem] min-w-[14rem] shrink overflow-x-auto" defaultSize={20} > <div className="w-full border-l bg-background-secondary shadow-xl" {...props} > <div className="flex h-full max-h-full flex-col"> <div className="mb-1 px-4 pt-6 sm:px-6"> <div className="flex flex-wrap items-center justify-between gap-4 gap-y-2"> <h4 className="flex-1 break-words">{title}</h4> <ClosePanelButton onClose={onClose} className="ml-auto" /> </div> </div> <div className="flex grow flex-col overflow-y-auto">{children}</div> </div> </div> </Panel> </> ); }

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