everything vs wealthsimple-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | wealthsimple-mcp by tatianathevisionary | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
wealthsimple-mcp · Summary
TypeScript MCP server connecting AI agents to Wealthsimple's help center via public Zendesk API with 7 typed tools.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingwealthsimple-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"]
}
}
}