Skip to main content
Glama

Sentry MCP

Official
by getsentry
backdrop.tsx639 B
interface BackdropProps { isOpen: boolean; onClose: () => void; } export function Backdrop({ isOpen, onClose }: BackdropProps) { return ( <div className={`fixed inset-0 bg-black/50 backdrop-blur-sm transition-all duration-500 ease-out ${ isOpen ? "opacity-100" : "opacity-0" }`} onClick={isOpen ? onClose : undefined} onKeyDown={ isOpen ? (e: React.KeyboardEvent) => e.key === "Escape" && onClose() : undefined } role={isOpen ? "button" : undefined} tabIndex={isOpen ? 0 : -1} aria-label={isOpen ? "Close chat panel" : undefined} /> ); }

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