UNPKG

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

Version:

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

19 lines (18 loc) 425 B
import { z } from "zod"; export declare const listRepositoriesTool: { name: string; description: string; parameters: { organizationUrl: z.ZodString; project: z.ZodString; }; handler: ({ organizationUrl, project }: { organizationUrl: string; project: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; };