@mcp-apps/azure-devops-mcp-server
Version:
A Model Context Protocol (MCP) server for Azure DevOps integration
25 lines (24 loc) • 656 B
TypeScript
import { z } from "zod";
export declare const cloneRepositoryTool: {
name: string;
description: string;
parameters: {
organizationUrl: z.ZodString;
project: z.ZodString;
repositoryName: z.ZodString;
localPath: z.ZodString;
branch: z.ZodOptional<z.ZodString>;
};
handler: ({ organizationUrl, project, repositoryName, localPath, branch }: {
organizationUrl: string;
project: string;
repositoryName: string;
localPath: string;
branch?: string;
}) => Promise<{
content: {
type: "text";
text: string;
}[];
}>;
};