Skip to main content
Glama
DataWire.tsx1.11 kB
type DatarWireProps = { active?: boolean; direction?: "ltr" | "rtl"; baseColorClass?: string; // solid wire color pulseColorClass?: string; // pulse highlight heightClass?: string; // Tailwind height, e.g. "h-1" periodSec?: number; // cycle duration pulseWidthPct?: number; // width of pulse % delaySec?: number; // NEW: delay before animation starts className?: string; }; export default function DataWire({ active = true, direction = "ltr", baseColorClass = "bg-white/0", pulseColorClass = "text-violet-400", heightClass = "h-0.5", periodSec = 0.5, pulseWidthPct = 100, delaySec = 0, className = "", }: DatarWireProps) { return ( <div className={[ "wire w-full", heightClass, baseColorClass, pulseColorClass, active ? "" : "wire-paused", direction === "rtl" ? "wire-rtl" : "", className, ].join(" ")} style={ { "--period": `${periodSec}s`, "--pulse-w": `${pulseWidthPct}%`, "--delay": `${delaySec}s`, } as React.CSSProperties } /> ); }

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