mercury-invoicing-mcp

mercury-invoicing-mcp

Mercury Banking MCP server with full Invoicing API support. Read accounts/transactions and create/manage recurring invoices via Model Context Protocol.

Category
Visit Server

README

🏦 mercury-invoicing-mcp

Mercury Banking MCP server with full Invoicing API support β€” first MCP to expose Mercury's accounts receivable endpoints.

CI CodeQL Tested with Vitest codecov OpenSSF Scorecard OpenSSF Best Practices Socket Security CodeRabbit Pull Request Reviews

npm version npm downloads Node.js Version License: MIT MCP MCP Server PRs Welcome

Sponsor on GitHub Patreon Ko-fi

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_account
  • mercury_list_cards
  • mercury_get_organization
  • mercury_list_categories

πŸ’³ Banking β€” IO Credit (undocumented endpoints)

  • mercury_list_credit_accounts β€” wraps GET /credit (reverse-engineered from the Mercury Dashboard; not in the public API reference). Returns IO Credit card accounts, which mercury_list_accounts filters out server-side.
  • mercury_list_credit_transactions β€” wraps GET /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_transaction
  • mercury_update_transaction (note, category)
  • mercury_send_money, mercury_request_send_money
  • mercury_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_treasury
  • mercury_list_treasury_transactions
  • mercury_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 Forbidden on Free or Standard plans. The other tools (banking, treasury, webhooks) work on every plan.

  • mercury_list_invoices, mercury_get_invoice
  • mercury_create_invoice, mercury_update_invoice
  • mercury_cancel_invoice
  • mercury_list_invoice_attachments

πŸ‘€ Customers (AR) β€” also requires Mercury Plus

  • mercury_list_customers, mercury_get_customer
  • mercury_create_customer, mercury_update_customer, mercury_delete_customer

πŸ”— Webhooks

  • mercury_list_webhooks, mercury_get_webhook
  • mercury_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_invoice endpoint anywhere (API or dashboard). An invoice email is only sent when the invoice is created with sendEmailOption: "SendNow". To send a copy later, download the invoice PDF (Mercury UI button "Download PDF", or the getinvoicepdf endpoint β€” 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

πŸ“„ 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

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured