@tiberriver256/mcp-server-azure-devops
Version:
Azure DevOps reference server for the Model Context Protocol (MCP)
25 lines (24 loc) • 855 B
TypeScript
import { z } from 'zod';
/**
* Schema for listing wiki pages from an Azure DevOps wiki
*/
export declare const ListWikiPagesSchema: z.ZodObject<{
organizationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
projectId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
wikiId: z.ZodString;
path: z.ZodOptional<z.ZodString>;
recursionLevel: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
wikiId: string;
path?: string | undefined;
projectId?: string | null | undefined;
organizationId?: string | null | undefined;
recursionLevel?: number | undefined;
}, {
wikiId: string;
path?: string | undefined;
projectId?: string | null | undefined;
organizationId?: string | null | undefined;
recursionLevel?: number | undefined;
}>;
export type ListWikiPagesOptions = z.infer<typeof ListWikiPagesSchema>;