other
Wealthbox MCP Integration for Claude Agent SDK
Connect Wealthbox to Claude Agent SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Wealthbox to Claude Agent SDK
Give Claude Agent SDK workflows access to KosmoKrator integrations through a local MCP server.
Add a KosmoKrator stdio MCP server to the Claude Agent SDK options. The gateway is local, scoped to this integration, and starts with
--write=deny so Claude Agent SDK can inspect read-capable tools without receiving write access by default.
Wealthbox MCP Config for Claude Agent SDK
Use a narrow integration list so the agent does not load unrelated tools.
{
"mcpServers": {
"kosmokrator-wealthbox": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=wealthbox",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=wealthbox --write=deny Why Use KosmoKrator Here
Expose only Wealthbox instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Wealthbox Tools Visible to Claude Agent SDK
Claude Agent SDK sees stable MCP tool names generated from the Wealthbox integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__wealthbox__wealthbox_list_contacts | wealthbox.wealthbox_list_contacts | Read | List contacts from Wealthbox CRM. Returns a paginated list of contacts with their details. Use search to filter by name or email. |
integration__wealthbox__wealthbox_get_contact | wealthbox.wealthbox_get_contact | Read | Get a specific contact from Wealthbox CRM by their ID. Returns full contact details including name, email, phone, address, and custom fields. |
integration__wealthbox__wealthbox_create_contact | wealthbox.wealthbox_create_contact | Write | 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. |
integration__wealthbox__wealthbox_list_tasks | wealthbox.wealthbox_list_tasks | Read | List tasks from Wealthbox CRM. Returns a paginated list of tasks with their details including name, due date, status, and assignee. |
integration__wealthbox__wealthbox_create_task | wealthbox.wealthbox_create_task | Write | Create a new task in Wealthbox CRM. Provide a task name and optionally a due date, description, and assignee. |
integration__wealthbox__wealthbox_list_opportunities | wealthbox.wealthbox_list_opportunities | Read | List opportunities (sales pipeline) from Wealthbox CRM. Returns a paginated list of opportunities with details like name, value, stage, and associated contact. |
integration__wealthbox__wealthbox_list_workflows | wealthbox.wealthbox_list_workflows | Read | List workflows from Wealthbox CRM. Returns a paginated list of workflows with their steps, status, and associated contacts. |
integration__wealthbox__wealthbox_list_events | wealthbox.wealthbox_list_events | Read | List calendar events from Wealthbox CRM. Returns a paginated list of events with their title, date, time, and associated contacts. |
integration__wealthbox__wealthbox_get_current_user | wealthbox.wealthbox_get_current_user | Read | Get the currently authenticated Wealthbox user. Returns user profile information including name, email, and account details. |