Skip to main content
Glama

@ragrabbit/mcp

import { pgTable, serial, integer, varchar, timestamp, unique } from "drizzle-orm/pg-core"; export const apiKeysTable = pgTable( "api_keys", { id: serial("id").primaryKey(), organizationId: integer("organization_id").notNull(), name: varchar("name", { length: 255 }).notNull(), key: varchar("key", { length: 255 }).notNull().unique(), createdAt: timestamp("created_at").notNull().defaultNow(), updatedAt: timestamp("updated_at").notNull().defaultNow(), }, (table) => { return { uniqueOrgKey: unique().on(table.organizationId, table.key), }; } );

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