UNPKG

@tiberriver256/mcp-server-azure-devops

Version:

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

18 lines (17 loc) 488 B
import { z } from 'zod'; /** * Schema for the listPipelines function */ export declare const ListPipelinesSchema: z.ZodObject<{ projectId: z.ZodOptional<z.ZodString>; top: z.ZodOptional<z.ZodNumber>; orderBy: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { projectId?: string | undefined; top?: number | undefined; orderBy?: string | undefined; }, { projectId?: string | undefined; top?: number | undefined; orderBy?: string | undefined; }>;