Skip to main content
Glama

Convex MCP server

Official
by get-convex
DeploymentPageTitle.tsx880 B
import Head from "next/head"; import { useContext } from "react"; import { DeploymentInfoContext } from "@common/lib/deploymentContext"; export function DeploymentPageTitle({ title, subtitle, }: { title: string; subtitle?: string; }) { const { useCurrentProject, useCurrentDeployment } = useContext( DeploymentInfoContext, ); const project = useCurrentProject(); const deployment = useCurrentDeployment(); return ( <Head> {project && deployment && ( <title> {title} {subtitle && `| ${subtitle} `} {deployment.id === 0 ? null : `| ${capitalize(deployment.deploymentType)}`}{" "} {project.id === 0 ? null : `| ${project.name}`} | Convex Dashboard </title> )} </Head> ); } function capitalize(text: string) { return text.charAt(0).toUpperCase() + text.slice(1); }

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