UNPKG

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

Version:

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

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