@mcp-apps/azure-devops-mcp-server
Version:
A Model Context Protocol (MCP) server for Azure DevOps integration
23 lines (22 loc) • 599 B
TypeScript
import { z } from "zod";
export declare const createBranchTool: {
name: string;
description: string;
parameters: {
repositoryPath: z.ZodString;
branchName: z.ZodString;
startPoint: z.ZodOptional<z.ZodString>;
checkout: z.ZodDefault<z.ZodBoolean>;
};
handler: ({ repositoryPath, branchName, startPoint, checkout }: {
repositoryPath: string;
branchName: string;
startPoint?: string;
checkout: boolean;
}) => Promise<{
content: {
type: "text";
text: string;
}[];
}>;
};