MCP Catalogs
Home

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.

financeai-llmdeveloper-tools
0
Forks
0
Open issues
this month
Last commit
2d ago
Indexed

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:

you:Answering user questions about Wealthsimple products with up-to-date, cited information
you:Automating support responses with current help center documentation
you:Enabling financial advisors to quickly retrieve Wealthsimple account and product information
you:Assisting developers building fintech integrations with Wealthsimple
you:Does this MCP server require authentication?
you:Is this project affiliated with Wealthsimple?

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 README
  • 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.

Comparable tools

helpcenter-mcpzendesk-mcpfinancial-data-api

Installation

Installation

  1. Clone the repository:

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

  1. Install dependencies:

``bash npm install ``

  1. Build the project:

``bash npm run build ``

  1. 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.