other
Wealthbox MCP, CLI, and Lua Integration for AI Agents
Wealthbox integration docs for AI agents: MCP gateway setup, Wealthbox CLI commands, Lua API reference, credentials, and function schemas.
9 functions 7 read 2 write Bearer token auth
Wealthbox for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
wealthbox- route_slug
wealthbox- package
wealthbox- auth_strategy
bearer_tokenBearer token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Wealthbox CLIHeadless setup and direct function calls. Wealthbox MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Wealthbox MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Wealthbox.
Claude Code Wealthbox MCP setup for Claude Code. Cursor Wealthbox MCP setup for Cursor. Codex Wealthbox MCP setup for Codex. OpenAI Agents Wealthbox MCP setup for OpenAI Agents SDK. Claude Agent SDK Wealthbox MCP setup for Claude Agent SDK. Vercel AI SDK Wealthbox MCP setup for Vercel AI SDK. LangChain Wealthbox MCP setup for LangChain. LangGraph Wealthbox MCP setup for LangGraph. CrewAI Wealthbox MCP setup for CrewAI. MCP clients Wealthbox MCP setup for Generic MCP Clients.
Wealthbox CLI Matrix
Use these pages for direct Wealthbox CLI workflows in scripts, CI, cron, and agent wrappers.
CI Wealthbox CLI for CI. Cron Jobs Wealthbox CLI for cron jobs. Shell Scripts Wealthbox CLI for shell scripts. Headless Automation Wealthbox CLI for headless automation. Coding Agents Wealthbox CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
wealthbox.wealthbox_list_contacts | Read read | 3 | List contacts from Wealthbox CRM. Returns a paginated list of contacts with their details. Use search to filter by name or email. |
wealthbox.wealthbox_get_contact | Read read | 1 | Get a specific contact from Wealthbox CRM by their ID. Returns full contact details including name, email, phone, address, and custom fields. |
wealthbox.wealthbox_create_contact | Write write | 10 | Create a new contact in Wealthbox CRM. At minimum provide a first name or last name. You can also include email, phone, address, and other contact details. |
wealthbox.wealthbox_list_tasks | Read read | 3 | List tasks from Wealthbox CRM. Returns a paginated list of tasks with their details including name, due date, status, and assignee. |
wealthbox.wealthbox_create_task | Write write | 6 | Create a new task in Wealthbox CRM. Provide a task name and optionally a due date, description, and assignee. |
wealthbox.wealthbox_list_opportunities | Read read | 3 | List opportunities (sales pipeline) from Wealthbox CRM. Returns a paginated list of opportunities with details like name, value, stage, and associated contact. |
wealthbox.wealthbox_list_workflows | Read read | 2 | List workflows from Wealthbox CRM. Returns a paginated list of workflows with their steps, status, and associated contacts. |
wealthbox.wealthbox_list_events | Read read | 4 | List calendar events from Wealthbox CRM. Returns a paginated list of events with their title, date, time, and associated contacts. |
wealthbox.wealthbox_get_current_user | Read read | 0 | Get the currently authenticated Wealthbox user. Returns user profile information including name, email, and account details. |