filesystem vs monarch-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | monarch-mcp-server by robcerda | |
|---|---|---|
| Stars | ★ 85,748 | ★ 216 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | FinanceProductivityAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
monarch-mcp-server · Summary
MCP server for Monarch Money personal finance management with extensive transaction and account 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
monarch-mcp-server · Use cases
- Automating personal financial reporting and analysis
- Bulk categorization of transactions for expense tracking
- Integration with Claude AI for intelligent financial assistance
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.
monarch-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/robcerda/monarch-mcp-server.git
cd monarch-mcp-server- Install dependencies:
pip install -r requirements.txt
pip install -e .- Configure Claude Desktop:
Add to your config file:
{
"mcpServers": {
"Monarch Money": {
"command": "/opt/homebrew/bin/uv",
"args": [
"run",
"--with",
"mcp[cli]",
"--with-editable",
"/path/to/your/monarch-mcp-server",
"mcp",
"run",
"/path/to/your/monarch-mcp-server/src/monarch_mcp_server/server.py"
]
}
}
}- One-time authentication:
python login_setup.py- Restart Claude