UNPKG

@mcp-apps/azure-devops-mcp-server

Version:

A Model Context Protocol (MCP) server for Azure DevOps integration

23 lines (22 loc) 591 B
import { z } from "zod"; export declare const commitChangesTool: { name: string; description: string; parameters: { repositoryPath: z.ZodString; message: z.ZodString; stageAll: z.ZodDefault<z.ZodBoolean>; allowEmpty: z.ZodDefault<z.ZodBoolean>; }; handler: ({ repositoryPath, message, stageAll, allowEmpty }: { repositoryPath: string; message: string; stageAll: boolean; allowEmpty: boolean; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; };