/** * Sandbox tool registrations — 5 MCP tools for sandbox lifecycle management. * * Sandbox tools bootstrap standalone (like init_project) — they create their own * GraphQL client and SandboxService, then reset the shared container after completion * so subsequent tool calls pick up the new/removed config. * * Phase 5 OBS-09 added two orphan-cleanup tools (list_orphan_sandboxes, * delete_orphan_sandbox) for the case where a user deletes a sandbox repo via * `gh repo delete` without running destroy_sandbox first — Project V2 doesn't * cascade-delete with the repo, so it lives on the user's account orphaned. */ import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; export declare function registerSandboxTools(server: McpServer): void; //# sourceMappingURL=sandbox-tools.d.ts.map