mercury-invoicing-mcp
Mercury Banking MCP server with full Invoicing API support. Read accounts/transactions and create/manage recurring invoices via Model Context Protocol.
README
π¦ mercury-invoicing-mcp
Mercury Banking MCP server with full Invoicing API support β first MCP to expose Mercury's accounts receivable endpoints.
A Model Context Protocol (MCP) server giving AI assistants (Claude, Cursor, Continue, etc.) full programmatic access to your Mercury business banking account, including the Invoicing API (one-shot + recurring) which is missing from every other Mercury MCP.
β¨ Why this MCP?
| Capability | Official Mercury MCP | dragonkhoi/mercury-mcp | mercury-invoicing-mcp |
|---|---|---|---|
| Banking read (accounts, transactions, statements) | β | β | β |
| Banking write (send_money, recipients) | β | β | β |
| Internal transfers between your own Mercury accounts | β | β | β |
| Invoicing API (create, update, cancel, attachments) | β | β | β |
| Customers AR + recurring invoices | β | β | β |
Webhooks full CRUD (incl. update_webhook) |
β | β | β |
| Built-in safeguards (rate limit, dry-run, redacted audit log) | β | β | β |
| Hosted (no token to manage) | β | β | β |
| Open source (MIT) | β | β | β |
| Node.js floor | N/A (hosted) | β from Node 14 EOL (2023) | β
Active LTS (>=22.22.2) |
| Total tools exposed | ~10 | ~11 | 34 |
For pure read-only consultation, prefer the official Mercury MCP. Use this one when you need to automate invoicing, write to Mercury, or expose Mercury to LLM agents safely.
π¦ Installation
npm install -g mercury-invoicing-mcp
Or use directly with npx:
npx mercury-invoicing-mcp
βοΈ Configuration
The server reads MERCURY_API_KEY from the environment. Get your API key at Mercury Settings β API Tokens.
π Right-sizing the token
Mercury exposes fine-grained per-resource scopes at token creation β not a single read/write toggle. Pick exactly what your use case needs and Mercury enforces the rest server-side: a tool called without the right scope returns 403, which the MCP surfaces as a clean isError: true response (with a Mercury Plus hint when relevant).
When you create the token, you choose:
- Which accounts the token can see (one, several, or all).
- Read or Write per resource family: Accounts, Transactions, Recipients, Send Money, Cards, Statements, Treasury, Invoicing (AR), Webhooks.
Common scope recipes for this MCP:
| Use case | Scopes to grant |
|---|---|
| Read-only consultation (dashboards, chat-channel bots) | Read on accounts, transactions, statements, cards, treasury β nothing else |
| Bookkeeping (categorise transactions) | Read everywhere + Write on transactions (for update_transaction) |
| Invoicing automation | Read on accounts + Write on invoices, customers (Mercury Plus required) |
| Recipients management | + Write on recipients |
| Internal transfers between your own accounts | + Write on send_money (used for create_internal_transfer) |
| Outbound send-money requests | + Write on send_money (creates the request β see safety note below) |
| Webhooks-only ops | Write on webhooks only |
β οΈ Important: outbound payments depend on YOUR Mercury approval policy
Whether an outbound payment created via this MCP executes immediately or waits for human approval is not controlled by the MCP β it is enforced by your Mercury workspace's approval policy (Settings β Approvals on app.mercury.com). The MCP can only ever create the API call; what Mercury does with it is up to your workspace configuration.
The three money tools behave differently:
mercury_request_send_moneyβ always creates a pending approval request in Mercury, regardless of workspace policy. Designed for the "submit, then wait for an approver" workflow.mercury_send_moneyβ submits a payment. It executes immediately or gets queued for approval, depending on your workspace's approval rules (amount thresholds, account-specific rules, required approvers). On a workspace configured with a $0 approval threshold, every outbound payment waits for human sign-off in the Mercury web/mobile app. On a more permissive workspace, smaller payments may settle without re-prompting.mercury_create_internal_transferβ moves money between two accounts you already own inside the same Mercury organisation. No external recipient, no approval workflow.
β Set a strict approval policy in Mercury (e.g. require approval for any outbound payment, regardless of amount) if you intend to expose write tools to an agent. The MCP's per-call rate limits and dry-run mode are useful belt-and-braces, but the authoritative gate is Mercury's approval policy. If a prompt-injected agent calls send_money, the safety of that call depends entirely on what Mercury would have done if the same payload arrived from any other API caller.
π§ͺ Sandbox mode
To test against Mercury's sandbox environment (no real money, pre-populated dummy data), just use a sandbox token:
MERCURY_API_KEY=secret-token:mercury_sandbox_xxxxxxxxxxxxxxxx
The MCP auto-detects sandbox tokens (those starting with mercury_sandbox_) and points to https://api-sandbox.mercury.com/api/v1 automatically.
To override the base URL explicitly (e.g. for a self-hosted proxy):
MERCURY_API_BASE_URL=https://your-proxy.example.com/api/v1
π€ Claude Desktop / Claude Code
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (or ~/.claude.json for Claude Code):
{
"mcpServers": {
"mercury-invoicing": {
"command": "npx",
"args": ["-y", "mercury-invoicing-mcp"],
"env": {
"MERCURY_API_KEY": "secret-token:mercury_production_xxxxxxxxxxxxxxxx"
}
}
}
}
π±οΈ Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"mercury-invoicing": {
"command": "npx",
"args": ["-y", "mercury-invoicing-mcp"],
"env": {
"MERCURY_API_KEY": "secret-token:..."
}
}
}
}
π¦ OpenClaw
OpenClaw is an open-source self-hosted agent platform that supports MCP via @modelcontextprotocol/sdk. Add to ~/.openclaw/openclaw.json:
{
"mcpServers": {
"mercury-invoicing": {
"command": "npx",
"args": ["-y", "mercury-invoicing-mcp"],
"env": {
"MERCURY_API_KEY": "secret-token:..."
}
}
}
}
Restart the gateway (docker restart openclaw-openclaw-gateway-1 or your equivalent). All tools become available to all your OpenClaw agents.
Tip: For agents exposed to untrusted channels (WhatsApp, Telegram, Slack, incoming emailβ¦), grant the token only the scopes the channel actually needs. Outbound payments still require explicit human approval in the Mercury app β but minimising scopes avoids noise (spurious pending requests) and reduces what an attacker could exfiltrate via reads. See Right-sizing the token for recipe per use case.
π οΈ Tools (36 total)
π¦ Banking β Accounts
mercury_list_accounts,mercury_get_accountmercury_list_cardsmercury_get_organizationmercury_list_categories
π³ Banking β IO Credit (undocumented endpoints)
mercury_list_credit_accountsβ wrapsGET /credit(reverse-engineered from the Mercury Dashboard; not in the public API reference). Returns IO Credit card accounts, whichmercury_list_accountsfilters out server-side.mercury_list_credit_transactionsβ wrapsGET /account/{id}/transactions(SINGULAR path), distinct from the documented plural/accounts/{id}/transactions. This is the path the Dashboard uses for IO Credit transactions, including pending card authorisations.
β οΈ The IO Credit endpoints are not in the Mercury public API reference. They were reverse-engineered from Dashboard network traffic (2026-04) and are subject to change without notice. A breaking change on Mercury's side will surface as a 404 from the two tools above. If you rely on them in production, open an issue so we can contact Mercury about stabilising them.
πΈ Banking β Transactions
mercury_list_transactions,mercury_get_transactionmercury_update_transaction(note, category)mercury_send_money,mercury_request_send_moneymercury_create_internal_transfer(between your own Mercury accounts)
π₯ Banking β Recipients
mercury_list_recipients,mercury_add_recipient,mercury_update_recipient
π Banking β Statements
mercury_list_statements
ποΈ Treasury
mercury_get_treasurymercury_list_treasury_transactionsmercury_list_treasury_statements
π§Ύ Invoicing (Accounts Receivable)
β οΈ Mercury Plus plan required. The Invoicing & Customers (AR) APIs are only available on Mercury's Plus plan (or higher). Calls to these tools return
403 Forbiddenon Free or Standard plans. The other tools (banking, treasury, webhooks) work on every plan.
mercury_list_invoices,mercury_get_invoicemercury_create_invoice,mercury_update_invoicemercury_cancel_invoicemercury_list_invoice_attachments
π€ Customers (AR) β also requires Mercury Plus
mercury_list_customers,mercury_get_customermercury_create_customer,mercury_update_customer,mercury_delete_customer
π Webhooks
mercury_list_webhooks,mercury_get_webhookmercury_create_webhook,mercury_update_webhook,mercury_delete_webhook
Endpoints not yet wrapped β Mercury exposes ~23 additional endpoints that this MCP does not yet cover. They will land in upcoming releases. Tracked: PDF download (
getinvoicepdf,getstatementpdf), attachments (uploadtransactionattachment,uploadrecipientattachment,getattachment,listrecipientsattachments), webhook signature verification (verifywebhook), webhook events (getevent,getevents), send-money approvals (listsendmoneyapprovalrequests,getsendmoneyapprovalrequest), users (getuser,getusers), Mercury Raise SAFE (getsaferequest(s),getsaferequestdocument), and OAuth flow (obtainaccesstoken,startoauth2flow).
Mercury does not expose
list_send_money_requests, COA Templates or Journal Entries via the public API at all β those features are dashboard-only.
There is no
send_invoiceendpoint anywhere (API or dashboard). An invoice email is only sent when the invoice is created withsendEmailOption: "SendNow". To send a copy later, download the invoice PDF (Mercury UI button "Download PDF", or thegetinvoicepdfendpoint β not yet wrapped, see "Endpoints not yet wrapped" above) and email it manually.
Tools available depend on your Mercury API token scope. The server registers all 34 tools but Mercury will reject unauthorized operations at the API level.
πΊοΈ Roadmap
See ROADMAP.md.
π Security
- Never share your API key. Use environment variables, never CLI args.
- Use read-only or scoped tokens when you don't need write access.
- Be aware of prompt injection risks when exposing write tools to LLMs that read untrusted content. See Anthropic's MCP security guidance.
π‘οΈ Built-in safeguards
This MCP includes three middleware layers that activate automatically on write tools (read tools are unaffected):
1οΈβ£ Rate limiting (dual-window)
Each write tool is mapped to a bucket. Every bucket enforces two rolling windows simultaneously β a daily cap (24 h) and a monthly cap (30-day rolling). A call is rejected as soon as either window is at its cap, so a runaway agent cannot drain accounts even if it stays under the daily limit by pacing itself over weeks.
| Bucket | Tools | Daily | Monthly (30d) |
|---|---|---|---|
payments |
send_money, request_send_money | 7 | 150 |
internal_transfer |
create_internal_transfer | 2 | 40 |
invoices_write |
create_invoice, update_invoice | 10 | 200 |
invoices_cancel |
cancel_invoice | 3 | 30 |
customers_write |
create_customer, update_customer, delete_customer | 3 | 60 |
recipients_add |
add_recipient | 3 | 45 |
recipients_update |
update_recipient | 2 | 15 |
transactions_update |
update_transaction (bookkeeping, tagging, receipts) | 50 | 500 |
webhooks_create |
create_webhook | 2 | 15 |
webhooks_update |
update_webhook | 2 | 15 |
webhooks_delete |
delete_webhook | 2 | 15 |
Override per bucket (both windows must be supplied):
MERCURY_MCP_RATE_LIMIT_payments=15/day,300/month # larger supplier batch
MERCURY_MCP_RATE_LIMIT_invoices_write=20/day,400/month # large monthly billing run
MERCURY_MCP_RATE_LIMIT_DISABLE=true # disable all rate limiting (not recommended)
When exceeded, the tool returns an isError: true response with a structured JSON payload. The source and error_type prefix make it unambiguous that this is a local MCP safeguard β the call was never sent to Mercury. A genuine Mercury 429 surfaces separately as "Mercury API error 429: ...".
{
"source": "mcp_safeguard",
"error_type": "mcp_rate_limit_daily_exceeded",
"message": "MCP Rate Limit Exceeded β Daily (local safeguard, not a Mercury API error)",
"hint": "Daily Limit Exceeded: mercury_send_money (bucket: payments) capped at 7 per 24h. Retry in ~180 min. Override with MERCURY_MCP_RATE_LIMIT_payments=D/day,M/month if this is a legitimate batch.",
"retry_after": "2026-04-22T00:00:00.000Z"
}
error_type is either mcp_rate_limit_daily_exceeded or mcp_rate_limit_monthly_exceeded β the agent learns to back off at the right granularity without confusing the MCP's local cap with a server-side Mercury limit.
The rate-limit window survives process restarts. State is persisted to ~/.mercury-mcp/ratelimit.json (mode 0o600); override the location with MERCURY_MCP_STATE_DIR=/abs/path if you need to share state between hosts or pin it to a specific volume. Without persistence, an MCP host that respawns the server per session would silently bypass the limit.
2οΈβ£ Dry-run mode
Inspect what an agent would do without actually calling Mercury. Useful for debugging suspected behaviour or staging:
MERCURY_MCP_DRY_RUN=true
Write tools then return a structured payload describing the intended action without hitting the Mercury API.
3οΈβ£ Audit log (opt-in)
Enable structured JSON logging of every write call:
MERCURY_MCP_AUDIT_LOG=/var/log/mercury-mcp-audit.log
Each line is {ts, tool, result, args} (one JSON object per line). Result is ok, dry-run, or error. The path must be absolute; sensitive fields in args (accountNumber, routingNumber, apiKey, authorization, password, token, secret, ssn) are automatically redacted. The file is created with mode 0600 (owner read/write only).
π§ Development
git clone https://github.com/klodr/mercury-invoicing-mcp.git
cd mercury-invoicing-mcp
npm install
npm run build
npm test
π‘ Inspiration
- @stripe/mcp β architecture patterns
- dragonkhoi/mercury-mcp β initial banking tool implementations
- Official Mercury MCP β read-only reference
π License
MIT β see LICENSE.
π€ Contributing
Issues and PRs welcome. See CONTRIBUTING.md for the test/build/coverage checklist and release process.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.