monobank-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MONOBANK_API_TOKEN | Yes | Personal Monobank API Token |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| monobank-bank-currencyA | Returns Monobank exchange rates for all supported currencies. Response fields:
|
| monobank-bank-currency-rateA | Returns the Monobank exchange rate for a specific currency pair. Faster than monobank-bank-currency when you need just one rate. quoteCurrency defaults to 'UAH'. The only non-UAH pair available is EUR/USD. |
| monobank-personal-client-infoA | Returns Monobank client profile: identity, token permissions, and all linked accounts and jars. Top-level fields:
Each account:
Each jar (savings goal):
|
| monobank-personal-statementA | Returns a list of transactions for a Monobank account. Maximum range is 31 days per request. Inputs:
Each transaction:
|
| monobank-personal-accountsA | Returns a compact list of all Monobank accounts and jars linked to this token. Use this to discover accountId values before calling monobank-personal-statement. Each account: id (use as accountId), type (card product), currencyCode, balance, maskedPan. Each jar: id, title, currencyCode, balance, goal (0 if no target set). |
| monobank-get-webhookA | Returns the webhook URL currently configured for this Monobank token. Empty string means no webhook is set. |
| monobank-set-webhookA | Sets the webhook URL for this Monobank token. Monobank will send real-time push notifications to this URL for every new transaction. WARNING: Each token supports only one webhook URL. Calling this tool overwrites the existing URL with no confirmation. Use monobank-get-webhook to check the current value first. |
| monobank-unset-webhookA | Removes the webhook URL for this Monobank token. Monobank will stop sending push notifications. Safe to call even if no webhook is currently set. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Most tools have distinct purposes, but there is some overlap between monobank-bank-currency and monobank-bank-currency-rate, and between monobank-personal-client-info and monobank-personal-accounts. The descriptions clearly differentiate these, so an agent can choose correctly.
All tool names use the 'monobank-' prefix and lowercase hyphens, but the pattern is not fully consistent: data retrieval tools use noun phrases (e.g., monobank-personal-statement), while webhook tools use verb-noun phrases (e.g., monobank-set-webhook). This is a minor deviation from a fully uniform convention.
With 8 tools, the server is well-scoped for a personal finance integration, covering currency rates, client information, accounts, statements, and webhook management without unnecessary redundancy.
The tool surface covers the essential read operations (rates, client info, accounts, statements) and the full webhook lifecycle, which matches the server's informational purpose. Minor gaps exist, such as no way to fetch a single account's details directly, but the accounts list provides a workaround.