Node version of Monobank MCP
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"monobank-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Node.js/TypeScript implementation of the Monobank MCP Server originally written in Python.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Open-source Model Context Protocol (MCP) server for JazzCash — Pakistan's largest mobile-money platform. Hosted Checkout, Mobile Wallet charges, inquiries, and refunds for AI agents.
MCP Security Weekly
Get CVE alerts and security updates for Monobank Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Node.js/TypeScript implementation of the Monobank MCP Server originally written in Python.
Monobank MCP Server exposes your Monobank personal account (and public exchange rates) as Model Context Protocol (MCP) tools.
This is a Node.js/TypeScript port of the original Python implementation by @nklymok.
@modelcontextprotocol/sdkget_client_info – client identity, accounts, and jars (requires MONOBANK_API_TOKEN).get_statement – account statement for a time window (requires token). Validates the period before calling the API; responses use amounts in main units and ISO 8601 UTC times for transactions.get_currency_rates – public currency exchange rates from Monobank (GET /bank/currency). No API token required.The easiest way to use this MCP server is via the published npm package:
Register the server in your MCP configuration
{
"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. get_currency_rates works without it.
Run your MCP client – the tools will be available according to your configuration.
If you want to contribute or modify the server:
Clone and install dependencies
git clone https://github.com/aler1x/monobank-mcp.git
cd monobank-mcp
npm install
Run the server after install (prepare runs npm run build). For personal tools, set MONOBANK_API_TOKEN.
Windows (PowerShell):
$env:MONOBANK_API_TOKEN="your_token_here"
node dist/index.js
Windows (Command Prompt):
set MONOBANK_API_TOKEN=your_token_here
node dist\index.js
macOS/Linux:
export MONOBANK_API_TOKEN=your_token_here
node dist/index.js
Or one line:
MONOBANK_API_TOKEN=your_token_here node dist/index.js
Development with hot reload (uses tsx --watch):
MONOBANK_API_TOKEN=your_token_here npm run dev
Build (TypeScript → dist/):
npm run build
| Tool | Description | Token | Rate limits (Monobank) |
|---|---|---|---|
get_client_info | Fetches client profile, list of accounts and jars. |