Server data from the Official MCP Registry
Receipts and invoices to structured, validated JSON with AU GST/ABN awareness. MCP + HTTPS API.
Receipts and invoices to structured, validated JSON with AU GST/ABN awareness. MCP + HTTPS API.
Remote endpoints: streamable-http: https://acjlabs-receipt-extraction.acjlabs.workers.dev/mcp
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
Endpoint verified · Requires authentication · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"com-acjlabs-receipt-extraction": {
"url": "https://acjlabs-receipt-extraction.acjlabs.workers.dev/mcp"
}
}
}From the project's GitHub README.
Turn receipts and invoices into structured, validated JSON — vendor, line items, tax, totals — with Australian GST and ABN checksum validation built in from day one. One API call, no hand-rolled vision-LLM prompts, no re-deriving ABN/GST rules from the ATO's own documentation.
Receipt JSON object.extract_receipt tool) or a plain HTTPS API — usable from Claude, Cursor, or
any HTTP client.{
"tool": "extract_receipt",
"input": { "document_base64": "<base64 image or PDF>", "mime_type": "image/jpeg" }
}
{
"vendor": { "name": "Acme Pty Ltd", "abn": "51824753556", "abn_valid": true },
"date": "2026-07-14",
"line_items": [{ "description": "Widget", "qty": 2, "unit_price": 12.5, "gst": 2.5, "tax_code": "taxable" }],
"totals": { "subtotal": 25.0, "gst": 2.5, "total": 27.5 },
"schema_version": "1.0"
}
The MCP server is live at https://acjlabs-receipt-extraction.acjlabs.workers.dev/mcp. Free-tier keys
self-serve — POST /v1/signup with { "email": "you@example.com" } returns your key directly in the
response, good for 20 documents/month, no card required. Store it immediately — it is shown once and
cannot be recovered if lost (re-signup for a new one). Paid keys provision the same way via a
one-time claim link once Pro/pay-as-you-go billing is live.
Validated 4/4 against hand-built (but genuinely readable) test documents covering net-priced, GST-inclusive-only, checksum-invalid-ABN, and unreadable-document cases. Real production accuracy across more document formats will be tracked once live traffic exists.
Prefer a typed function over hand-rolling MCP JSON-RPC calls? @acjlabs/receipt-extraction-client
(client/, not published yet — npm publish is a gated founder action) wraps the extract_receipt
tool call:
import { createReceiptExtractionClient } from "@acjlabs/receipt-extraction-client";
const client = createReceiptExtractionClient({
baseUrl: "https://acjlabs-receipt-extraction.acjlabs.workers.dev",
apiKey: "...",
});
const receipt = await client.extractReceipt(base64EncodedImageOrPdf, "image/png");
Generic OCR APIs (Mindee, Veryfi) extract raw fields but don't know that an Australian ABN has an 11-digit checksum, or that GST apportionment differs for entertainment expenses — you'd build and maintain that yourself. See the full comparison.
This repository hosts the documentation for the hosted service. The service implementation is not open source. Bug reports and feature requests are welcome in this repo's Issues; you can also reach us at contact@acjlabs.com.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.