UNPKG

@tiberriver256/mcp-server-azure-devops

Version:

Azure DevOps reference server for the Model Context Protocol (MCP)

20 lines (19 loc) 673 B
export * from './types'; export * from './list-pipelines'; export * from './get-pipeline'; export * from './list-pipeline-runs'; export * from './get-pipeline-run'; export * from './download-pipeline-artifact'; export * from './pipeline-timeline'; export * from './get-pipeline-log'; export * from './trigger-pipeline'; export * from './tool-definitions'; import { RequestIdentifier, RequestHandler } from '../../shared/types/request-handler'; /** * Checks if the request is for the pipelines feature */ export declare const isPipelinesRequest: RequestIdentifier; /** * Handles pipelines feature requests */ export declare const handlePipelinesRequest: RequestHandler;