Skip to main content
Glama

Convex MCP server

Official
by get-convex
DocCardList.tsx1.17 kB
import React, { ReactNode } from "react"; import Link from "@docusaurus/Link"; import { useDocById } from "@docusaurus/plugin-content-docs/client"; import Heading from "@theme/Heading"; type Item = { docId: string; href: string; label: string; icon?: ReactNode; invertIcon?: true; }; export function DocCardList(props: { items: Item[] }) { const { items } = props; return ( <div className="cards"> {items.map((item, index) => ( <CardLink key={index} item={item} /> ))} </div> ); } export function CardLink({ className, item, }: { className?: string; item: Item; }) { const doc = useDocById(item.docId ?? undefined); const icon = item.icon; return ( <Link href={item.href} className={ "card" + (item.invertIcon ? " convex-invert-icon" : "") + " " + (className ?? "") } > {icon} <div> <Heading as="h2" className="text--truncate" title={item.label}> {item.label} </Heading> <p className="text--truncate" title={doc?.description}> {doc?.description} </p> </div> </Link> ); }

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