UNPKG

@mcp-apps/azure-devops-mcp-server

Version:

A Model Context Protocol (MCP) server for Azure DevOps integration

23 lines (22 loc) 590 B
import { z } from "zod"; export declare const getPRBasicInfoTool: { name: string; description: string; parameters: { organizationUrl: z.ZodString; project: z.ZodString; repositoryName: z.ZodString; pullRequestId: z.ZodNumber; }; handler: ({ organizationUrl, project, repositoryName, pullRequestId }: { organizationUrl: string; project: string; repositoryName: string; pullRequestId: number; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; };