Skip to main content
Glama

Convex MCP server

Official
by get-convex
Tab.tsx1.32 kB
import { Tab as HeadlessTab } from "@headlessui/react"; import { Fragment, PropsWithChildren } from "react"; import { Button, ButtonProps } from "@ui/Button"; import { cn } from "@ui/cn"; export function Tab({ disabled, tip, children, large = false, className, ...props }: ButtonProps & PropsWithChildren<{ disabled?: boolean; tip?: string; large?: boolean }>) { return ( <HeadlessTab as={Fragment}> {({ selected }) => ( <Button disabled={disabled} tip={tip} variant="unstyled" className={cn( "cursor-pointer px-3 py-2 text-xs whitespace-nowrap", "focus:outline-none", "focus-visible:outline-border-selected", !disabled && selected ? "border-b-2 border-content-primary font-semibold text-content-primary" : "border-b-2 border-transparent text-content-secondary", disabled ? "cursor-not-allowed disabled:text-content-secondary" : "hover:text-content-primary", // It's OK for tabs. // eslint-disable-next-line no-restricted-syntax large && "text-lg", className, )} {...props} > {children} </Button> )} </HeadlessTab> ); }

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