monobank-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
monobank-mcp by Aler1x | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | FinanceDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
monobank-mcp · Summary
Node.js/TypeScript MCP server for Monobank that exposes personal accounts, statements, and public exchange rates as tools.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
monobank-mcp · Use cases
- Financial assistants that can query current account balance and transaction history
- Currency conversion applications that use Monobank's public exchange rates
- Personal finance tracking tools that integrate Monobank data via MCP
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
monobank-mcp · Install
Installation
- **Using the published npm package:**
{
"mcpServers": {
"monobank-mcp": {
"command": "npx",
"args": ["-y", "@alerix/monobank-mcp"],
"env": {
"MONOBANK_API_TOKEN": "your_token_here"
}
}
}
}Set MONOBANK_API_TOKEN only if you use get_client_info or get_statement.
- **For development:**
git clone https://github.com/aler1x/monobank-mcp.git
cd monobank-mcp
npm install
MONOBANK_API_TOKEN=your_token_here npm run devfilesystem · 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.