wealthsimple-mcp
by tatianathevisionary·★ 1·Score 37
TypeScript MCP server connecting AI agents to Wealthsimple's help center via public Zendesk API with 7 typed tools.
Overview
This unofficial MCP server provides AI agents with structured access to Wealthsimple's help center documentation. It exposes 7 tools for full-text search, taxonomy browsing, and article retrieval through the public Zendesk API. The server is implemented in TypeScript with Zod validation for type safety, includes a 30-minute caching mechanism for performance, and offers optional Datadog telemetry with privacy redaction options. It's designed to be boundary-clean with minimal dependencies and clear architecture.
Try asking AI
After installing, here are 6 things you can ask your AI assistant:
When to choose this
Choose this server when you need to provide AI-powered support for Wealthsimple products with access to their official help center documentation.
When NOT to choose this
Don't use this if you need account-specific data or real-time transaction information, as it only provides access to the public help center documentation.
Tools this server exposes
7 tools extracted from the READMEsearch_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.
Comparable tools
Installation
Installation
- Clone the repository:
``bash git clone https://github.com/tatianathevisionary/wealthsimple-mcp.git cd wealthsimple-mcp ``
- Install dependencies:
``bash npm install ``
- Build the project:
``bash npm run build ``
- Run the server:
``bash npm start ``
Claude Desktop Configuration
Add to your mcp.json:
{
"mcpServers": {
"wealthsimple-help-center": {
"command": "node",
"args": ["/absolute/path/to/wealthsimple-mcp/build/index.js"]
}
}
}FAQ
- Does this MCP server require authentication?
- No, it uses only the public, unauthenticated Zendesk Help Center API with no scraping or account credentials required.
- Is this project affiliated with Wealthsimple?
- No, this is an independent, unofficial community project. It's not built, endorsed, sponsored, or maintained by Wealthsimple Technologies Inc.
Compare wealthsimple-mcp with
Last updated · Auto-generated from public README + GitHub signals.