MCP Catalogs
Home

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
Score3877
Official
Categories
FinanceDeveloper ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguageJavaScriptTypeScript
Last commit1 mo agothis 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

  1. **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.

  1. **For development:**
git clone https://github.com/aler1x/monobank-mcp.git
cd monobank-mcp
npm install
MONOBANK_API_TOKEN=your_token_here npm run dev

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.

Comparison generated from public README + GitHub signals. Last updated automatically.