UNPKG

growi-mcp-server

Version:

MCP Server for GROWI - a modern Wiki system

20 lines (19 loc) 744 B
import { z } from 'zod'; import { GrowiClient } from '../growi-client.js'; export declare const recentlyUpdatedPagesSchema: z.ZodObject<{ limit: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>; offset: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>; }, "strip", z.ZodTypeAny, { limit?: string | number | undefined; offset?: string | number | undefined; }, { limit?: string | number | undefined; offset?: string | number | undefined; }>; export type RecentlyUpdatedPagesParams = z.infer<typeof recentlyUpdatedPagesSchema>; export declare function recentlyUpdatedPages(client: GrowiClient, params: RecentlyUpdatedPagesParams): Promise<{ content: { type: string; text: string; }[]; }>;