import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { AdoClient } from "../providers/ado-client.js"; import type { Config } from "../config/index.js"; /** * get_pr_details — Phase 8 / Monitoring * * Fetches comprehensive details about a pull request: * - Core metadata (title, status, draft, source/target branches) * - Reviewer votes (approved, rejected, waiting, no vote) * - Comment threads (inline code comments + general discussion) * - Build/policy statuses (CI pass/fail, required reviewers, etc.) * - Iterations (push history) * - Merge status and completion details * - Linked work items * * Use this to: * - Monitor a PR after creation * - Check if builds passed * - Read reviewer feedback before responding * - Understand why a PR is blocked */ export declare function registerGetPrDetails(server: McpServer, adoClient: AdoClient, config: Config): void; //# sourceMappingURL=get-pr-details.d.ts.map