bootstrap_verify
Verifies OTP with bootstrap token to issue a one-time API key and return Stripe onboarding URL. Store the key immediately; hand the URL to the user.
Instructions
Step 2 of 2. Verifies the OTP, issues the first API key (shown once — store immediately), and returns Stripe onboarding URL. Hand the Stripe URL to the human; poll bootstrap_poll until ready.
When to use: The human pasted the OTP. Call this once with bootstrap_token + otp_code to mint the API key.
Tips:
Store the api_key IMMEDIATELY — it is shown once and cannot be recovered
After receiving the key, restart this MCP session with the key to unlock all tools
After 5 failed OTP attempts the bootstrap_token is invalidated — call bootstrap_start again
Hand the stripe_onboarding_url to the human; poll bootstrap_poll every 30s until ready=true
Note: This action requires human intervention. You cannot complete it yourself.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bootstrap_token | Yes | Token from /start. | |
| otp_code | Yes | 6-digit OTP pasted from email. |