Skip to main content
Glama
default-cells.tsx1.27 kB
import { ArrowDownIcon, ArrowRightIcon, ArrowUpIcon, CheckCircledIcon, CircleIcon, CrossCircledIcon, QuestionMarkCircledIcon, StopwatchIcon, } from "@radix-ui/react-icons"; export type cellConfig = { value: string; label: string; icon?: React.ElementType; className?: string }; /** * Commonly used labels and icons for cells data */ export const labels: cellConfig[] = [ { value: "bug", label: "Bug", }, { value: "feature", label: "Feature", }, { value: "documentation", label: "Documentation", }, ]; export const statuses: cellConfig[] = [ { value: "backlog", label: "Backlog", icon: QuestionMarkCircledIcon, }, { value: "todo", label: "Todo", icon: CircleIcon, }, { value: "in progress", label: "In Progress", icon: StopwatchIcon, }, { value: "done", label: "Done", icon: CheckCircledIcon, }, { value: "canceled", label: "Canceled", icon: CrossCircledIcon, }, ]; export const priorities: cellConfig[] = [ { label: "Low", value: "low", icon: ArrowDownIcon, }, { label: "Medium", value: "medium", icon: ArrowRightIcon, }, { label: "High", value: "high", icon: ArrowUpIcon, }, ];

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/madarco/ragrabbit'

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