UNPKG

@tiberriver256/mcp-server-azure-devops

Version:

Azure DevOps reference server for the Model Context Protocol (MCP)

21 lines (20 loc) 623 B
import { z } from 'zod'; /** * Schema for getting a wiki page from an Azure DevOps wiki */ export declare const GetWikiPageSchema: z.ZodObject<{ organizationId: z.ZodNullable<z.ZodOptional<z.ZodString>>; projectId: z.ZodNullable<z.ZodOptional<z.ZodString>>; wikiId: z.ZodString; pagePath: z.ZodString; }, "strip", z.ZodTypeAny, { wikiId: string; pagePath: string; projectId?: string | null | undefined; organizationId?: string | null | undefined; }, { wikiId: string; pagePath: string; projectId?: string | null | undefined; organizationId?: string | null | undefined; }>;