Skip to main content
Glama

Convex MCP server

Official
by get-convex
StepByStep.tsx673 B
import { ReactNode } from "@mdx-js/react/lib"; import React from "react"; export function StepByStep({ children }: { children: ReactNode }) { return <ol className="convex-step-by-step">{children}</ol>; } export function Step({ children, title, }: { children: ReactNode; title: ReactNode; }) { const childArray = React.Children.toArray(children); const description = childArray.slice(0, -1); const code = childArray.slice(-1)[0]; return ( <li> <div className="convex-step"> <div> <div style={{ fontWeight: "bold" }}>{title}</div> {description} </div> <div>{code}</div> </div> </li> ); }

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