@mcp-apps/azure-devops-mcp-server
Version:
A Model Context Protocol (MCP) server for Azure DevOps integration
31 lines (30 loc) • 890 B
TypeScript
import { z } from "zod";
export declare const createWorkItemTool: {
name: string;
description: string;
parameters: {
organizationUrl: z.ZodString;
project: z.ZodString;
areaPath: z.ZodString;
iterationPath: z.ZodString;
workItemType: z.ZodString;
title: z.ZodString;
description: z.ZodOptional<z.ZodString>;
assignedTo: z.ZodOptional<z.ZodString>;
};
handler: ({ organizationUrl, project, areaPath, iterationPath, workItemType, title, description, assignedTo }: {
organizationUrl: string;
project: string;
areaPath: string;
iterationPath: string;
workItemType: string;
title: string;
description?: string;
assignedTo?: string;
}) => Promise<{
content: {
type: "text";
text: string;
}[];
}>;
};