MCP server for Monobank API integration
npm install monobank-mcp-serverMCP (Model Context Protocol) server for integrating with Monobank API.
- Node.js 18.0.0 or higher
- A Monobank API token. You can obtain it at: https://api.monobank.ua/
Note: Your API token is only used locally and is never tracked or transmitted anywhere except to Monobank's API.
The server provides three tools:
1. get_currency_rates - Get currency exchange rates (rate limited to once per 5 minutes)
2. get_client_info - Get client information and account details (rate limited to once per 60 seconds)
3. get_statement - Get account statements for a specified date range (rate limited to once per 60 seconds, max 31 days + 1 hour)
To use this server with an MCP client, add it to your configuration:
``json``
{
"mcpServers": {
"monobank": {
"command": "npx",
"args": ["monobank-mcp-server"],
"env": {
"MONOBANK_API_TOKEN": "your_token_here"
}
}
}
}
MIT