Back to Browse

Blank Invoice Maker MCP Server

by InnarM
FinanceModerate5.7MCP RegistryLocal
Free

Server data from the Official MCP Registry

Create free invoices from your AI assistant via a pre-filled blankinvoicemaker.com link.

About

Create free invoices from your AI assistant via a pre-filled blankinvoicemaker.com link.

Security Report

5.7
Moderate5.7Moderate Risk

This is a well-designed MCP server for generating invoice links via Blank Invoice Maker. Authentication and authorization are appropriately handled through URL fragment encoding (no server-side storage or transmission). Code quality is high with proper input validation via Zod schemas, safe compression using lz-string, and no dangerous patterns detected. Permissions align precisely with the server's purpose: no file system access, no shell execution, minimal network usage (only generating links, not making outbound calls). Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.

7 files analyzed · 7 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-innarm-blank-invoice-maker": {
      "args": [
        "-y",
        "blank-invoice-maker-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Blank Invoice Maker — MCP Server

An MCP server that lets any AI assistant (Claude, and other MCP clients) create invoices with Blank Invoice Maker — the free, no-signup, no-watermark invoice generator.

Ask your assistant to make an invoice, and it returns a link that opens blankinvoicemaker.com with the invoice fully pre-filled, ready to review and download as a PDF.

Privacy by design. The invoice data travels inside the link's URL fragment (#invoice=…) and is decoded entirely in your browser. Nothing is uploaded — consistent with Blank Invoice Maker's no-account, no-server-storage model.

Tools

ToolWhat it does
list_templatesLists the industry invoice templates available at blankinvoicemaker.com/templates (slug, name, description, URL).
create_invoiceBuilds an invoice from your details and returns a pre-filled blankinvoicemaker.com link to review and download.

create_invoice example

"Invoice Globex LLC for 10 hours of design at $90/hr and one $120 hosting setup, net 14, in GBP."

The assistant calls create_invoice with:

{
  "business": { "name": "Acme Studio", "email": "hi@acme.studio" },
  "client": { "name": "Globex LLC", "email": "ap@globex.com" },
  "items": [
    { "description": "Design work", "quantity": 10, "unitPrice": 90, "unit": "hours" },
    { "description": "Hosting setup", "quantity": 1, "unitPrice": 120 }
  ],
  "currency": "GBP",
  "paymentTerms": "Net 14"
}

…and returns a https://blankinvoicemaker.com/#invoice=… link that opens the editor pre-filled.

Installation

Requires Node.js 18+.

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "blank-invoice-maker": {
      "command": "npx",
      "args": ["-y", "blank-invoice-maker-mcp"]
    }
  }
}

Other MCP clients

Run the server over stdio:

npx -y blank-invoice-maker-mcp

How it works

create_invoice maps your input into the invoice structure used by blankinvoicemaker.com, compresses it with lz-string, and appends it to the site URL as a #invoice= fragment. Opening the link hydrates the editor in your browser — no signup, no watermark, no data leaving your machine.

Development

npm install
npm run build       # compile TypeScript to dist/
npm test            # build + run the unit tests
npm start           # run the server over stdio

Keeping templates in sync

src/templates-data.ts is generated from the Blank Invoice Maker template registry:

BIM_APP_DIR=/path/to/blank-invoice-maker npm run generate:templates

Links

License

MIT © Blank Invoice Maker

Reviews

No reviews yet

Be the first to review this server!