Skip to main content
Glama

Convex MCP server

Official
by get-convex
LostAccessModal.tsx1.07 kB
import { CodeLine } from "elements/CodeLine"; import { Modal } from "@ui/Modal"; export function LostAccessModal({ onClose, teamSlug, projectSlug, }: { onClose: () => void; teamSlug: string; projectSlug: string; }) { return ( <Modal title="Lost Access" onClose={onClose}> <> <LostAccessDescription /> <LostAccessCommand teamSlug={teamSlug} projectSlug={projectSlug} /> </> </Modal> ); } export function LostAccessDescription() { return ( <p className="mb-5 text-sm leading-6 text-content-primary"> Reinitialize a Convex app in your local directory if you've lost your{" "} <code className="rounded-sm bg-background-tertiary p-1 text-content-primary"> .env.local </code>{" "} file. </p> ); } export function LostAccessCommand({ teamSlug, projectSlug, }: { teamSlug: string; projectSlug: string; }) { const cliCommand = `npx convex dev --configure=existing --team ${teamSlug} --project ${projectSlug}`; return <CodeLine className="text-xs" code={cliCommand} />; }

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