Skip to main content
Glama

Convex MCP server

Official
by get-convex
BillingContactInputs.tsx1.28 kB
import { TextInput } from "@ui/TextInput"; import { useFormik, useFormikContext } from "formik"; import { BillingContactResponse } from "generatedApi"; import { UpgradeFormState } from "./upgradeFormState"; export function BillingContactInputs({ formState, disabled = false, }: { formState: | ReturnType<typeof useFormikContext<UpgradeFormState>> | ReturnType<typeof useFormik<BillingContactResponse>>; disabled?: boolean; }) { return ( <div className="flex flex-col gap-2"> <div className="flex flex-col gap-4"> <div> <TextInput label="Name" placeholder="Billing contact name" outerClassname="w-64" error={formState.errors.name} onChange={formState.handleChange} value={formState.values.name} id="name" disabled={disabled} /> </div> <div> <TextInput label="Email" error={formState.errors.email} placeholder="Billing contact email" outerClassname="w-64" onChange={formState.handleChange} value={formState.values.email} id="email" disabled={disabled} /> </div> </div> </div> ); }

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