wealthbox-mcp

wealthbox-mcp

Exposes the Wealthbox CRM API to MCP-enabled clients, enabling operations on contacts, tasks, events, notes, opportunities, projects, workflows, and more.

Category
访问服务器

README

wealthbox-mcp

A Model Context Protocol (MCP) server that exposes the Wealthbox CRM API to MCP-enabled clients (e.g., Claude Desktop).

  • Wealthbox API docs: https://dev.wealthbox.com/

Requirements

  • Node.js 18+ (uses global fetch)
  • A Wealthbox API Access Token (Personal access token)

Installation

Global install:

npm i -g wealthbox-mcp

Local (from source):

npm install
npm run build

Configuration

Provide your Wealthbox token via environment variable or a local file:

  • WEALTHBOX_TOKEN (required): your Wealthbox API access token; sent as ACCESS_TOKEN header per docs
  • WEALTHBOX_API_BASE_URL (optional): defaults to https://api.crmworkspace.com
  • Optional local file fallback: wealthbox_key.txt (first line)

Example (stdio run):

WEALTHBOX_TOKEN=your_token_here wealthbox-mcp
# or if running from source
WEALTHBOX_TOKEN=your_token_here node dist/index.js

Using with Claude (MCP)

Add to your Claude Desktop config (platform-specific path). Minimal example:

{
  "mcpServers": {
    "wealthbox": {
      "command": "wealthbox-mcp",
      "env": {
        "WEALTHBOX_TOKEN": "YOUR_API_TOKEN"
      }
    }
  }
}

After starting Claude, you can ask it to list tools and call them. Example prompts:

  • "List all MCP tools from the wealthbox server."
  • "Call the wealthbox.health tool and show the full structured JSON."
  • "Call the wealthbox.getMe tool and print the full structured JSON."

Tools Overview

Core tools map to Wealthbox REST endpoints. Many create/update tools accept explicit fields and also an optional raw body that overrides field parameters when provided.

  • Health and basics

    • wealthbox.health – GET /v1/me and return ok + profile
    • wealthbox.getMe – GET /v1/me
    • wealthbox.listUsers – GET /v1/users
    • wealthbox.listTeams – GET /v1/teams
    • wealthbox.request – Generic caller: { method, path, body?, query? }
  • Contacts

    • wealthbox.contacts.list – GET /v1/contacts
    • wealthbox.contacts.get – GET /v1/contacts/{id}
    • wealthbox.contacts.create – POST /v1/contacts
    • wealthbox.contacts.update – PUT /v1/contacts/{id}
    • wealthbox.contacts.delete – DELETE /v1/contacts/{id}
  • Tasks

    • wealthbox.tasks.list – GET /v1/tasks
    • wealthbox.tasks.get – GET /v1/tasks/{id}
    • wealthbox.tasks.create – POST /v1/tasks
    • wealthbox.tasks.update – PUT /v1/tasks/{id}
    • wealthbox.tasks.delete – DELETE /v1/tasks/{id}
  • Events

    • wealthbox.events.list – GET /v1/events
    • wealthbox.events.get – GET /v1/events/{id}
    • wealthbox.events.create – POST /v1/events
    • wealthbox.events.update – PUT /v1/events/{id}
    • wealthbox.events.delete – DELETE /v1/events/{id}
  • Notes

    • wealthbox.notes.list – GET /v1/notes
    • wealthbox.notes.get – GET /v1/notes/{id}
    • wealthbox.notes.create – POST /v1/notes
    • wealthbox.notes.update – PUT /v1/notes/{id}
  • Opportunities

    • wealthbox.opportunities.list – GET /v1/opportunities
    • wealthbox.opportunities.get – GET /v1/opportunities/{id}
    • wealthbox.opportunities.create – POST /v1/opportunities
    • wealthbox.opportunities.update – PUT /v1/opportunities/{id}
    • wealthbox.opportunities.delete – DELETE /v1/opportunities/{id}
  • Projects

    • wealthbox.projects.list – GET /v1/projects
    • wealthbox.projects.get – GET /v1/projects/{id}
    • wealthbox.projects.create – POST /v1/projects
    • wealthbox.projects.update – PUT /v1/projects/{id}
    • wealthbox.projects.delete – DELETE /v1/projects/{id}
  • Comments & Activity Stream

    • wealthbox.comments.list – GET /v1/comments{?resource_id,resource_type,updated_since,updated_before}
    • wealthbox.activityStream.list – GET /v1/activity_stream
  • Metadata & Categories

    • wealthbox.userGroups.list – GET /v1/user_groups
    • wealthbox.tags.list – GET /v1/tags{?document_type} (document_type: Contact or Note)
    • wealthbox.categories.list – GET /v1/categories/{type} where type ∈ tags|custom_fields|opportunity_stages|opportunity_pipelines|contact_types|contact_sources|task_categories|event_categories|file_categories|investment_objectives|financial_account_types|email_types|phone_types|address_types|website_types|contact_roles
    • wealthbox.customFields.list – GET /v1/custom_fields
    • wealthbox.contactRoles.list – GET /v1/contact_roles
  • Workflows

    • wealthbox.workflows.list – GET /v1/workflows
    • wealthbox.workflows.get – GET /v1/workflows/{id}
    • wealthbox.workflows.create – POST /v1/workflows
    • wealthbox.workflows.delete – DELETE /v1/workflows/{id}
    • wealthbox.workflowTemplates.list – GET /v1/workflow_templates
    • wealthbox.workflowTemplates.get – GET /v1/workflow_templates/{id}
    • wealthbox.workflowSteps.complete – POST /v1/workflow_steps/{id}/complete
    • wealthbox.workflowSteps.revert – POST /v1/workflow_steps/{id}/revert
  • Households

    • wealthbox.households.addMember – POST /v1/households/{household_id}/members
    • wealthbox.households.deleteMember – DELETE /v1/households/{household_id}/members/{id}

Parameter Hints (selected)

Contacts list (query)

{
  "query": {
    "name": "string",
    "email": "string",
    "phone": "string",
    "contact_type": "string",
    "id": 123,
    "active": true,
    "tags": ["VIP", "Newsletter"],
    "type": "person",
    "page": 1,
    "per_page": 5
  }
}

Example: { "query": { "name": "John Smith", "per_page": 10 } }

Notes

// wealthbox.notes.create
{
  "content": "Updated with Claude via Wealthbox MCP",
  "linked_to": [{ "id": 12345, "type": "Contact" }]
}
// wealthbox.notes.update
{ "id": 211578273, "content": "New contents" }

Tasks

// wealthbox.tasks.create
{ "title": "Call client", "due_date": "2025-10-04", "assigned_to_user_id": 123 }

Contacts

// wealthbox.contacts.create
{ "first_name": "Ada", "last_name": "Lovelace", "emails": [{ "address": "ada@example.com", "type": "Work" }] }

Households

// wealthbox.households.addMember
{ "household_id": 1, "id": 2, "title": "Head" }

Tags/Categories

// wealthbox.tags.list
{ "document_type": "Contact" }

// wealthbox.categories.list
{ "type": "contact_sources" }

Security

  • Do not commit your token. The token is loaded from WEALTHBOX_TOKEN or a local file (wealthbox_key.txt) which is ignored by git and npm.
  • The server uses HTTPS to talk to Wealthbox’s API endpoint https://api.crmworkspace.com.

Development

Run locally (stdio):

npm install
npm run build
WEALTHBOX_TOKEN=$(cat wealthbox_key.txt) node dist/index.js

License

MIT

Acknowledgements

Built on the TypeScript MCP SDK. See the Wealthbox API docs for full parameter and response details: https://dev.wealthbox.com/

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选