exit_demo_mode
Provide a tailored decision tree to exit demo mode and transition to real signing, based on Ledger availability and setup status.
Instructions
Build a step-by-step guide for the user to exit demo mode and switch to operational (real signing) mode. The MCP server CANNOT actually unset VAULTPILOT_DEMO or invoke the setup wizard — both require user action outside the MCP. This tool produces a tailored decision tree the agent walks the user through. Stateless / read-only — calling it does NOT change demo state. AGENT BEHAVIOR — call this tool ONLY after explicitly confirming with the user that they want to leave demo mode (e.g., 'I'm ready to set this up for real', 'I have my Ledger now', 'exit demo'). DO NOT call it as a probe — the response is verbose and presumes intent. Before calling, ASK the user: (1) do you have a Ledger device? (2) have you already run vaultpilot-mcp-setup? (3) which chains do you intend to use? Pass the answers as args so the response is tailored. If hasLedger=false, the response recommends DEFERRING the exit (without a Ledger, operational mode gives no functionality demo doesn't already have). Surface that verbatim. Outside demo mode, the tool returns a no-op response indicating there's nothing to exit.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hasLedger | No | Whether the user confirmed they have a Ledger device. Pass `false` to get a deferral message recommending they stay in demo until they have hardware. Omit if unknown — the response includes a 'verify Ledger first' caution. | |
| hasRunSetup | No | Whether the user has previously run `vaultpilot-mcp-setup`. When true, the response skips the setup-wizard walkthrough. | |
| chains | No | Chains the user intends to use. Drives which RPC / API keys to recommend. Defaults to ['ethereum'] when omitted. | |
| acquireKeys | No | Whether the user wants help acquiring API keys. Affects recommendation tone — true expands signup links, false keeps the response short. |