UNPKG

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

Version:

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

17 lines (16 loc) 357 B
import { z } from "zod"; export declare const listProjectsTool: { name: string; description: string; parameters: { organizationUrl: z.ZodString; }; handler: ({ organizationUrl }: { organizationUrl: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; };