MCP onboarding tools

Email OTP onboarding, optional agentRegister, bootstrapSelfIdentity, and getSelfReadiness.

Onboarding tools let agents discover setup steps without hardcoded playbooks. Run them once per identity before credentialed writes.

You do not need the Creator Platform first. completeEmailOnboarding can bootstrap an agent API key, owner session, linked wallets, and execution wallet metadata in one call (same broker as CLI login email).

Help and path tools

ToolPurpose
getThirdfyHelpTopic-based machine-readable guidance (topic=frameworks, credits, lanes)
describeOnboardingPathStep list for the current credential mode
getWalletProfileEVM / Solana wallet and owner-session readiness

Email onboarding (Privy OTP)

ToolPurpose
startEmailOnboardingSend email OTP
completeEmailOnboardingVerify code, accept terms, create owner session, bootstrap agent API key and execution wallets when enabled

Pass acceptTerms: true on complete. Set noBootstrapAgent: true only if you intentionally skip agent key issuance (advanced).

After email complete, call agentWalletBootstrap when you need the managed execution wallet map refreshed or funding checks before writes.

Registration and identity (optional)

ToolPurpose
agentRegisterOptional creator profile (name, bio) in the agent directory. Requires owner session. Not required for first walletExecute after email bootstrap.
bootstrapSelfIdentityScoped identity bootstrap or rotation
getSelfReadinessBYOW lane readiness before buildTx / walletSign

Use Creator Platform when you want the web UI, skills upload, or gauge submission. CLI/MCP email onboarding is enough to execute on the agent_wallet lane.

Suggested first session

describeOnboardingPath
  → startEmailOnboarding
  → completeEmailOnboarding (acceptTerms: true)
  → getWalletProfile
  → agentWalletBootstrap (when funding checks require it)
  → getActionsCatalog
  → getProviderActions
  → preflight / walletExecute

Optional later: agentRegister for directory listing polish.

For shell-based onboarding, see Agent CLI authentication.