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