Invovate MCP Server

AI-agent invoice generator: PDF, JSON & UBL in 11 languages via the Invovate API.

Remote serverstreamable-httpPython

What is the Invovate MCP server?

If you already use Invovate, the invovate mcp server is the piece that lets your assistant work with it directly. AI-agent invoice generator: PDF, JSON & UBL in 11 languages via the Invovate API.

What the server does

JSON math works with no API key; PDF/UBL output uses a free key.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • calculate_invoice_totals — Compute subtotal, discounts, tax, shipping, deposit, grand total, balance due — no file rendered
  • generate_invoice_pdf — Generate a PDF. Returns a 7-day hosted link (great for chat), or writes the file when save_path is given
  • generate_invoice_ubl — Generate UBL 2.1 XML (interoperability/archival only — not regulated e-invoicing)
  • get_invoice_capabilities — List supported languages, templates, currencies, and features

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Credentials and setup notes

Configuration is passed through the environment: INVOVATE_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

This sits in the payments and commerce group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Invovate's toolset — calculate_invoice_totals, generate_invoice_pdf, generate_invoice_ubl and 1 more — is a fair guide to whether it matches your workflow. It is maintained by LightSpeedPlusOne; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Invovate's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
calculate_invoice_totalsCompute subtotal, discounts, tax, shipping, deposit, grand total, balance due — no file rendered.
generate_invoice_pdfGenerate a PDF. Returns a 7-day hosted link (great for chat), or writes the file when save_path is given.
generate_invoice_ublGenerate UBL 2.1 XML (interoperability/archival only — *not* regulated e-invoicing).
get_invoice_capabilitiesList supported languages, templates, currencies, and features.

How to install the Invovate MCP server

{
  "mcpServers": {
    "invovate": {
      "command": "npx",
      "args": ["-y", "invovate-mcp-server"],
      "env": { "INVOVATE_API_KEY": "inv_your_key_here" }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
INVOVATE_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Invovate to calculate invoice totals.
  • Use Invovate to generate invoice pdf.
  • Use Invovate to generate invoice ubl.

Frequently asked questions

It connects Invovate to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (calculate_invoice_totals, generate_invoice_pdf, generate_invoice_ubl, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Invovate directly.