Skip to main content
Glama

Sentry MCP

Official
by getsentry
base.tsx846 B
import { cn } from "../../lib/utils"; export function Heading({ children, as, className, ...props }: { children: React.ReactNode; as?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; } & React.HTMLAttributes<HTMLHeadingElement>) { const Tag = as || "h2"; return ( <Tag className={cn("text-2xl font-bold mb-6 text-white", className)} {...props} > <div className="flex flex-row gap-2">{children}</div> <div className="h-[2px] mt-1 bg-violet-300 w-full" /> </Tag> ); } export function Link({ children, className, href, ...props }: { children: React.ReactNode; href: string; } & React.HTMLAttributes<HTMLAnchorElement>) { return ( <a href={href} className={cn("text-violet-300 font-semibold underline", className)} {...props} > {children} </a> ); }

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/getsentry/sentry-mcp'

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