azure-devops-mcp

by RyanCardin15
Verified
/** * Interface for Azure DevOps configuration */ export interface AzureDevOpsConfig { orgUrl: string; project: string; personalAccessToken: string; } /** * Interface for work item query parameters */ export interface WorkItemQueryParams { query: string; } /** * Interface for the raw work item response from Azure DevOps */ export interface RawWorkItemResponse { workItems: any[]; // Using any for flexibility, can be typed more specifically count: number; } /** * Interface for formatted work item response suitable for MCP */ export interface WorkItemResponse { content: Array<{ type: "text"; text: string; }>; workItems?: any[]; // Optional raw data if needed isError?: boolean; }