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