@mcp-apps/azure-devops-mcp-server
Version:
A Model Context Protocol (MCP) server for Azure DevOps integration
21 lines (20 loc) • 523 B
TypeScript
import { z } from "zod";
export declare const gitCommandTool: {
name: string;
description: string;
parameters: {
repositoryPath: z.ZodString;
command: z.ZodString;
workingDirectory: z.ZodOptional<z.ZodString>;
};
handler: ({ repositoryPath, command, workingDirectory }: {
repositoryPath: string;
command: string;
workingDirectory?: string;
}) => Promise<{
content: {
type: "text";
text: string;
}[];
}>;
};