ultimate_mcp_server vs wealthsimple-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | wealthsimple-mcp by tatianathevisionary | |
|---|---|---|
| Stars | ★ 149 | ★ 1 |
| 30d uses | — | — |
| Score | 85 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | FinanceAI / LLM ToolsDeveloper Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
wealthsimple-mcp · Summary
TypeScript MCP server connecting AI agents to Wealthsimple's help center via public Zendesk API with 7 typed tools.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
wealthsimple-mcp · Use cases
- Answering user questions about Wealthsimple products with up-to-date, cited information
- Automating support responses with current help center documentation
- Enabling financial advisors to quickly retrieve Wealthsimple account and product information
- Assisting developers building fintech integrations with Wealthsimple
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverwealthsimple-mcp · Install
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"]
}
}
}