romania-invoice
Let AI agents submit Romanian e-Factura invoices (UBL 2.1 CIUS-RO) to the ANAF national system.
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
- Create Invoice: Issue a Romania B2B electronic invoice (factura electronica) into the national e-Factura system (ANAF/SPV). Builds UBL 2.1 XML in the CIUS-RO customization (Romania's CIUS of EN 16931)
- Query Invoice: Check the ANAF processing status of an invoice uploaded by create_invoice, using its index_incarcare. e-Factura processing is asynchronous. Status values: PROCESSING (ANAF stare "in pre
- Download Invoice Result: Download the ANAF response archive (ZIP) for a processed invoice, using the download_id (id_descarcare) that query_invoice returns once status is ACCEPTED or REJECTED. For ACC
What data it sees
Do you need an account
No: the server works without sign-in
Let AI agents submit Romanian e-Factura invoices (UBL 2.1 CIUS-RO) to the ANAF national system. Stateless remote MCP server: bring your own OAuth bearer, it stores nothing. Build, upload, and track invoices with VAT math and XML generation built in.
Server tool list (3)
Raw names from tools/list. Only developers need these.
| create_invoice | Issue a Romania B2B electronic invoice (factura electronica) into the national e-Factura system (ANAF/SPV). Builds UBL 2.1 XML in the CIUS-RO customization (Romania's CIUS of EN 16931) and uploads it under your own ANAF access token. Bring your own credentials as headers: x-anaf-token (Bearer access token from your one-time ANAF OAuth with a qualified digital certificate; the cert never reaches this server), x-anaf-cif (your supplier fiscal code / CIF, RO prefix optional). Header x-anaf-mode: production switches to the live rail (default = test, no fiscal effect). Upload is asynchronous: this returns index_incarcare (an upload index) — poll query_invoice with it to learn if ANAF ACCEPTED or REJECTED the invoice. Romanian VAT rates: 19 (standard), 9 and 5 (reduced), 0 (zero-rated). Amounts are in RON. |
| query_invoice | Check the ANAF processing status of an invoice uploaded by create_invoice, using its index_incarcare. e-Factura processing is asynchronous. Status values: PROCESSING (ANAF stare "in prelucrare" — not finished, poll again shortly); ACCEPTED (stare "ok" — the invoice is registered; download_invoice_result fetches the official ANAF-signed XML using download_id); REJECTED (stare "nok" — validation failed; download_invoice_result fetches the error report XML using download_id). Safe to call anytime. |
| download_invoice_result | Download the ANAF response archive (ZIP) for a processed invoice, using the download_id (id_descarcare) that query_invoice returns once status is ACCEPTED or REJECTED. For ACCEPTED invoices the ZIP contains the official ANAF-signed UBL XML (your legal proof); for REJECTED invoices it contains an XML error report listing the CIUS-RO validation failures. Returns the ZIP base64-encoded. Safe to call anytime. |