import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { ServerContext } from "../config/server-context.js"; /** * configure_ado — Setup / Repo Switch * * Checks whether a target repository has Azure DevOps configuration * (ADO_ORG_URL, ADO_PROJECT, ADO_PAT) in its local .env file. * * - If all values are present, returns the current config status. * - If any are missing and the user provides them, validates the * credentials and writes/updates the .env file. * - If any are missing and no values are provided, returns what's * missing so the calling agent can ask the user. * * Also ensures .env is listed in the repo's .gitignore to prevent * accidental secret leakage. */ export declare function registerConfigureAdo(server: McpServer, ctx: ServerContext): void; //# sourceMappingURL=configure-ado.d.ts.map