wealthsimple-mcp
by tatianathevisionary·★ 1·综合分 37
TypeScript MCP 服务器,通过公共 Zendesk API 将 AI 代理连接到 Wealthsimple 帮助中心,提供 7 种类型化工具。
概述
这是一个非官方的 MCP 服务器,为 AI 代理提供对 Wealthsimple 帮助中心文档的结构化访问。它通过公共 Zendesk API 提供 7 个工具,用于全文搜索、分类浏览和文章检索。该服务器使用 TypeScript 实现,并通过 Zod 验证确保类型安全,包含 30 分钟的缓存机制以提高性能,并带有隐私删除选项的可选 Datadog 遥测功能。其设计架构清晰,边界干净,依赖项最少。
试试问 AI
装完之后,这里有 6 个你可以让 AI 做的事:
什么时候选它
当您需要为 Wealthsimple 产品提供基于 AI 的支持,并访问其官方帮助中心文档时,选择此服务器。
什么时候不要选它
如果您需要账户特定数据或实时交易信息,请不要使用此服务器,因为它仅提供对公共帮助中心文档的访问。
此 server 暴露的工具
从 README 抽取出 7 个工具search_help_centerFull-text search across every published article. Returns ranked results with title, URL, snippet, labels, section IDs.
browse_taxonomyHierarchical view of the entire help center: categories → sections → article titles.
list_categoriesTop-level taxonomy: Get Started, Move Money, Investing, Spending, File Taxes, Your Profile.
list_sectionsSections inside a category (or all sections).
list_articlesArticle summaries inside a single section.
get_articleFetch a single article body by ID. Returns Markdown by default; format: 'html' or 'text' available.
resolve_help_urlResolve a public help.wealthsimple.com article URL → full content.
可对比工具
安装
安装
- 克隆仓库:
``bash git clone https://github.com/tatianathevisionary/wealthsimple-mcp.git cd wealthsimple-mcp ``
- 安装依赖项:
``bash npm install ``
- 构建项目:
``bash npm run build ``
- 运行服务器:
``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 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。