MCP Catalogs
首页

wealthsimple-mcp

by tatianathevisionary·1·综合分 37

TypeScript MCP 服务器,通过公共 Zendesk API 将 AI 代理连接到 Wealthsimple 帮助中心,提供 7 种类型化工具。

financeai-llmdeveloper-tools
0
Forks
0
活跃 Issue
本月
最近提交
2 天前
收录于

概述

这是一个非官方的 MCP 服务器,为 AI 代理提供对 Wealthsimple 帮助中心文档的结构化访问。它通过公共 Zendesk API 提供 7 个工具,用于全文搜索、分类浏览和文章检索。该服务器使用 TypeScript 实现,并通过 Zod 验证确保类型安全,包含 30 分钟的缓存机制以提高性能,并带有隐私删除选项的可选 Datadog 遥测功能。其设计架构清晰,边界干净,依赖项最少。

试试问 AI

装完之后,这里有 6 个你可以让 AI 做的事:

:回答用户关于 Wealthsimple 产品的最新、有引用来源的问题
:使用最新的帮助中心文档自动支持响应
:帮助金融顾问快速检索 Wealthsimple 账户和产品信息
:协助开发构建与 Wealthsimple 集成的金融科技应用
:这个 MCP 服务器是否需要身份验证?
:此项目是否与 Wealthsimple 有关联?

什么时候选它

当您需要为 Wealthsimple 产品提供基于 AI 的支持,并访问其官方帮助中心文档时,选择此服务器。

什么时候不要选它

如果您需要账户特定数据或实时交易信息,请不要使用此服务器,因为它仅提供对公共帮助中心文档的访问。

此 server 暴露的工具

从 README 抽取出 7 个工具
  • search_help_center

    Full-text search across every published article. Returns ranked results with title, URL, snippet, labels, section IDs.

  • browse_taxonomy

    Hierarchical view of the entire help center: categories → sections → article titles.

  • list_categories

    Top-level taxonomy: Get Started, Move Money, Investing, Spending, File Taxes, Your Profile.

  • list_sections

    Sections inside a category (or all sections).

  • list_articles

    Article summaries inside a single section.

  • get_article

    Fetch a single article body by ID. Returns Markdown by default; format: 'html' or 'text' available.

  • resolve_help_url

    Resolve a public help.wealthsimple.com article URL → full content.

可对比工具

helpcenter-mcpzendesk-mcpfinancial-data-api

安装

安装

  1. 克隆仓库:

``bash git clone https://github.com/tatianathevisionary/wealthsimple-mcp.git cd wealthsimple-mcp ``

  1. 安装依赖项:

``bash npm install ``

  1. 构建项目:

``bash npm run build ``

  1. 运行服务器:

``bash npm start ``

Claude Desktop 配置

在您的 mcp.json 中添加:

{
  "mcpServers": {
    "wealthsimple-help-center": {
      "command": "node",
      "args": ["/absolute/path/to/wealthsimple-mcp/build/index.js"]
    }
  }
}

FAQ

这个 MCP 服务器是否需要身份验证?
不需要,它仅使用公共的未经身份验证的 Zendesk 帮助中心 API,无需抓取或账户凭据。
此项目是否与 Wealthsimple 有关联?
没有,这是一个独立的、非官方的社区项目,不是由 Wealthsimple Technologies Inc. 构建、认可、赞助或维护的。

wealthsimple-mcp 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。