Skip to main content
Glama

Convex MCP server

Official
by get-convex
index.tsx2.4 kB
import { Sheet } from "@ui/Sheet"; import { DeploymentUrl, HttpActionsUrl, } from "@common/features/settings/components/DeploymentUrl"; import { DeploymentSettingsLayout } from "@common/layouts/DeploymentSettingsLayout"; import Link from "next/link"; import { useContext } from "react"; import { DeploymentInfoContext } from "@common/lib/deploymentContext"; import { CopyTextButton } from "@common/elements/CopyTextButton"; export default function Settings() { const { useCurrentDeployment } = useContext(DeploymentInfoContext); const deployment = useCurrentDeployment(); const isAnonymousDeployment = deployment?.name?.startsWith("anonymous-") || deployment?.name?.startsWith("tryitout-"); return ( <DeploymentSettingsLayout page="url-and-deploy-key"> <Sheet> <DeploymentUrl> Configure a production Convex client with this URL. </DeploymentUrl> </Sheet> <Sheet> <HttpActionsUrl /> </Sheet> <Sheet> <div className="flex flex-col gap-2 text-content-primary"> <h4 className="mb-4">Deploy Key</h4> <p className="max-w-prose text-content-secondary"> Deploy keys are only available for cloud deployments. </p> {isAnonymousDeployment ? ( <> <p className="max-w-prose text-content-primary"> You can create a Convex account and automatically link this deployment by running this from your terminal: </p> <CopyTextButton className="text-sm" text="npx convex login" /> <Link href="https://docs.convex.dev/production/hosting/" target="_blank" className="text-content-link hover:underline" > Learn more </Link> </> ) : ( <p className="mt-1 max-w-prose text-content-primary"> Instead, generate an admin key instead using{" "} <Link href="https://github.com/get-convex/convex-backend/tree/main/self-hosted#docker-configuration" className="text-content-link hover:underline" > the script in your repository </Link> . </p> )} </div> </Sheet> </DeploymentSettingsLayout> ); }

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