filesystem vs wealthsimple-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | wealthsimple-mcp by tatianathevisionary | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
wealthsimple-mcp · Summary
TypeScript MCP server connecting AI agents to Wealthsimple's help center via public Zendesk API with 7 typed tools.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
wealthsimple-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"]
}
}
}