Skip to main content
Glama
patch.ts520 B
import { z } from 'zod'; export const MapPatchSchema = z.object({ op: z.enum(['add', 'remove', 'replace']), path: z.string(), value: z.unknown().optional(), timestamp: z.string().datetime(), }); export type MapPatch = z.infer<typeof MapPatchSchema>; export const AnnotationSchema = z.object({ id: z.string(), x: z.number(), y: z.number(), text: z.string(), authorId: z.string(), createdAt: z.string().datetime(), }); export type Annotation = z.infer<typeof AnnotationSchema>;

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/Mnehmos/rpg-mcp'

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