Skip to main content
Glama
wiki.ts548 B
import { z } from "zod"; /** * Schema for creating a wiki page */ export const createWikiPageSchema = z.object({ project: z.string(), wiki: z.string(), path: z.string(), content: z.string(), }); export type CreateWikiPageParams = z.infer<typeof createWikiPageSchema>; /** * Schema for editing a wiki page */ export const editWikiPageSchema = z.object({ project: z.string(), wiki: z.string(), path: z.string(), content: z.string(), etag: z.string(), }); export type EditWikiPageParams = z.infer<typeof editWikiPageSchema>;

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/mmruesch12/azdo-mcp'

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