{
"mcpServers": {
"monobank-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Node version of Monobank MCP
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 247 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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 as Model Context Protocol (MCP) tools.
This is a Node.js/TypeScript port of the original Python implementation by @nklymok.
get_client_info – returns client, accounts and jars metadata.get_statement – returns account statement for a given period (≤ 31 days).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"
}
}
}
}
Run your MCP client – the two tools will be available immediately.
If you want to contribute or modify the server:
Clone and install dependencies
git clone https://github.com/your-username/Monobank-MCP.git
cd Monobank-MCP
npm install
Set your Monobank API token (choose one method):
Windows (PowerShell):
$env:MONOBANK_API_TOKEN="your_token_here"
npm start
Windows (Command Prompt):
set MONOBANK_API_TOKEN=your_token_here
npm start
macOS/Linux:
export MONOBANK_API_TOKEN=your_token_here
npm start
Or run directly with environment variable:
MONOBANK_API_TOKEN=your_token_here npm start
For development with hot reload:
MONOBANK_API_TOKEN=your_token_here npm run dev
| Tool | Description | Rate limits |
| ----------------- | --------------------------------------------------------------------------------------------------------------------------------- | ---------------- |
| get_client_info | Fetches client profile, list of accounts and jars. | 1 request / 60 s |
| get_statement | Retrieves transaction list for a specific account and time range.
Parameters: account_id, from_timestamp, to_timestamp. | 1 request / 60 s |
To use this server, you need a personal Monobank API token. You can get one from the official Monobank API documentation: https://api.monobank.ua/index.html
| Name | Required | Description |
| -------------------- | -------- | --------------------------------- |
| MONOBANK_API_TOKEN | ✅ | Your personal Monobank API token. Get it from https://api.monobank.ua/index.html |
MIT