Skip to main content
Glama
contants.ts1.46 kB
import { CheckCircledIcon, CrossCircledIcon, FileIcon, FilePlusIcon, HomeIcon, StopwatchIcon, } from "@radix-ui/react-icons"; import { FilesIcon, HistoryIcon, WaypointsIcon } from "@repo/design/base/icons"; import { IndexStatus } from "@repo/db/schema"; import { cellConfig } from "@repo/design/components/table/utils/default-cells"; // Cells data transformations and formatting: export const statuses: cellConfig[] = [ { value: IndexStatus.PENDING, label: "Pending", icon: StopwatchIcon, }, { value: IndexStatus.PROCESSING, label: "In Progress", icon: StopwatchIcon, }, { value: IndexStatus.SCRAPED, label: "Scraped", icon: FileIcon, }, { value: IndexStatus.DONE, label: "Done", icon: CheckCircledIcon, }, { value: IndexStatus.SKIPPED, label: "Skipped", icon: CrossCircledIcon, }, { value: IndexStatus.ERROR, label: "Error", icon: CrossCircledIcon, className: "text-red-500", }, { value: IndexStatus.OUTDATED, label: "Outdated", icon: HistoryIcon, }, { value: IndexStatus.PENDING_CLEAN, label: "Crawling", icon: WaypointsIcon, }, ]; export const crawlOptions: cellConfig[] = [ { label: "Origin", value: "origin" as any as string, icon: FilesIcon }, { label: "Crawled", value: "crawled" as any as string, icon: WaypointsIcon }, { label: "Single", value: "single" as any as string, icon: FilePlusIcon }, ];

Latest Blog Posts

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