Skip to main content
Glama
form-section.tsx607 B
import { cn } from "@repo/ui/lib/utils" import type { ReactNode } from "react" interface FormSectionProps { title: string description?: string children: ReactNode className?: string } export function FormSection({ title, description, children, className }: FormSectionProps) { return ( <div className={cn("space-y-6", className)}> <div className="space-y-1"> <h3 className="text-lg font-medium">{title}</h3> {description && <p className="text-sm text-muted-foreground">{description}</p>} </div> <div className="space-y-4">{children}</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/metacode0602/open-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server