@mcp-apps/azure-devops-mcp-server
Version:
A Model Context Protocol (MCP) server for Azure DevOps integration
27 lines (26 loc) • 864 B
TypeScript
import { z } from "zod";
export declare const getPRTestImpactTool: {
name: string;
description: string;
parameters: {
organizationUrl: z.ZodString;
project: z.ZodString;
repositoryName: z.ZodString;
pullRequestId: z.ZodNumber;
includeTestFiles: z.ZodDefault<z.ZodBoolean>;
analysisDepth: z.ZodDefault<z.ZodEnum<["basic", "standard", "comprehensive"]>>;
};
handler: ({ organizationUrl, project, repositoryName, pullRequestId, includeTestFiles, analysisDepth }: {
organizationUrl: string;
project: string;
repositoryName: string;
pullRequestId: number;
includeTestFiles: boolean;
analysisDepth: "basic" | "standard" | "comprehensive";
}) => Promise<{
content: {
type: "text";
text: string;
}[];
}>;
};