Typed Python clients for Romania's ANAF web services: e-Factura, e-Transport, and the public no-auth registries.
Project description
anafpy
Typed Python clients for Romania's ANAF tax-authority web services — e-Factura (electronic invoicing), e-Transport (goods transport), and the public no-auth registries (VAT/taxpayer lookups, financial statements) — plus a local MCP server that exposes them as Claude Cowork skills.
anafpy is a thin transport client, not invoicing software. For e-Factura you bring invoice XML that your own invoicing system produced, and anafpy validates it, files it with ANAF, tracks status, and pulls documents back — wrapping the XML you read back (your filings and invoices suppliers issued to you) in a friendly flat read view for easy display. (e-Factura is a filing endpoint; Romanian law presumes you already run an invoicing system.) e-Transport is different: there is usually no upstream software producing declaration XML, so anafpy translates ANAF's whole (small, fully enumerated) schema into friendly typed models — you author declarations, UIT deletions, confirmations, and vehicle changes from structured fields, no XML handling needed, and the same models render what you read back.
Documentation: anafpy.readthedocs.io — the end-user setup walkthrough, the library guides, and the API reference.
What can you do with this?
With the MCP server connected to a Claude client (Claude Desktop, Claude Code), an accountant in Romania can ask Claude to:
Check partners and public data — no login required (these ride ANAF's public, no-auth services):
- Verify a business partner by CUI/CIF — name, address, VAT status (plătitor de TVA), TVA la încasare, split-VAT, inactive flag — one call, in bulk if you like.
- Check whether a partner is enrolled in RO e-Factura.
- Look up the farmers' register (RegAgric) and religious-entities register (RegCult).
- Pull a company's filed financial statements (bilanț) for a given year.
- Validate an invoice XML against ANAF's authoritative server-side
validare(CIUS-RO / BR-RO rules) — no filing.
Work your e-Factura inbox — read-only (needs the certificate login):
- List received and sent invoice messages for a date window.
- Download an invoice as an easy-to-read view, and save the official signed ZIP
and/or a rendered PDF to disk — powering batch flows like "export last month's
invoices as
<date> - <partner>.pdf".
Issuing outbound invoices is deliberately not here — that comes from your invoicing software, which files with ANAF directly. The e-Factura surface is read-only.
Declare goods transport in e-Transport — with a confirmation step (needs the login):
- File a declaration and get a UIT code from transport data in any source — an email, a PDF invoice, a CMR, a spreadsheet — and correct, delete, confirm, or change the vehicle on an existing one.
- List recent notifications, check an upload's status, and look up active declarations / UIT codes.
- Filing is two-step gated: Claude shows you a preview, and nothing is submitted to ANAF until you explicitly confirm.
Setup caveats worth knowing: the e-Factura and e-Transport tools need a one-time login with your qualified digital certificate (the same one you use on ANAF's SPV) — the public checks above work without it. The server runs locally on your own machine, so downloaded invoices and PDFs land on your own filesystem. See the setup walkthrough for the full Claude Desktop + ANAF setup.
Status: early / alpha (
0.x), on PyPI asanafpy. The OAuth2 auth layer, both async clients (with an easy-to-read flat view of downloaded documents), and the MCP server (structured e-Transport filing and a read-only e-Factura surface — inbox, download, validate) are implemented and tested. Validation is ANAF's own server-sidevalidareendpoint — there is no local rule engine. SeeDESIGN.mdfor the full design anddocs/anaf-reference/for a compiled local reference of ANAF's APIs.
Requires Python 3.12+. Built on httpx and Pydantic v2.
What works today
- OAuth2 auth layer — Authorization-Code bootstrap (browser + qualified
certificate), local token store, and headless refresh, exposed via the
anafpyCLI and anhttpx.Authintegration for the clients. EFacturaClient(async) —upload,get_status,download,validate_signature(checks the MF signature over a downloaded invoice), theupload_and_waitpoll-until-terminal helper, andlist_messages— a single async iterator that pages the message list under the hood (window bydaysorstart/end; empty window → empty iterator, real ANAF errors → raise).downloadexposes three read tiers: raw signed bytes, the full UBL model, and an easy-to-readFlatInvoiceview.ETransportClient(async) —upload,get_status,info,upload_and_wait,list_notifications(same async-iterator shape), andupload_document, which composes and files any of the four flat documents — aFlatTransportdeclaration/correction,FlatDeletion,FlatConfirmation, orFlatVehicleChange— without the caller touching XML.PublicClient(async) — ANAF's unauthenticated public services onwebservicesp.anaf.ro:lookup_taxpayers(VAT registration, VAT-on-collection, inactive, split-VAT, and RO e-Factura register membership in one call),lookup_efactura_register,lookup_farmers,lookup_cult_entities,get_financial_statement(public bilanț indicators) — plus the stateless e-Factura document services:validate_invoice(ANAF's authoritative server-side validation, no filing) andrender_invoice_pdf(the officialtransformarePDF rendering); both are prod-only on ANAF's side and need no login. No credentials, no test/prod split; requests are paced client-side at ANAF's stated 1 req/s rule.- Flat models —
read_flat_invoiceprojects UBL into a small, easy-to-readFlatInvoiceread view (lossy, with acompleteflag); anafpy never composes UBL from it. The e-Transport flat models are bidirectional:read_flat_transportviews a parsed document andbuild_etransport/render_etransportauthor one — full translation of ANAF's XSD, with enum-coded fields (counties, border points, customs offices, operation types...) accepted by name or code. - Generated models — UBL 2.1 / CIUS-RO (
from anafpy.efactura import Invoice, CreditNote) and the proprietary e-Transport XSD, generated from vendored schemas. - MCP server (
anafpy[mcp]) — a local stdio connector exposing the operations as Cowork skills, with read-first, two-step gated e-Transport filing and a read-only e-Factura surface (see below).
CI (GitHub Actions, gates on 3.12 + 3.13) and tag-triggered PyPI publishing are in place. (A sync facade was dropped as a goal — the clients are async-only.)
Install
Setting up a fresh machine end to end — ANAF app registration, the certificate login, and the Claude / Cowork configuration, written for a non-developer — follow the setup walkthrough. The short version for developers:
From PyPI:
pip install anafpy # or: uv add anafpy
pip install 'anafpy[mcp]' # with the MCP server
The distribution offers one extra: anafpy[mcp] (the MCP server).
For the MCP server, prefer running from a checkout (as the setup walkthrough
does): the
compiled ANAF reference (docs/anaf-reference/, served as MCP resources) and the
workflow skills (skills/, served as MCP prompts) live in the repo, not in the
wheel. A PyPI-installed server runs fine but serves neither unless
ANAFPY_DOCS_DIR / ANAFPY_SKILLS_DIR point at copies. From source:
git clone https://github.com/robert-malai/anafpy && cd anafpy
uv sync --all-extras
Authentication
ANAF uses OAuth2 (Authorization Code) gated by a qualified digital certificate. The one-time, interactive bootstrap runs on your machine (the cert lives there):
anafpy auth login --client-id <ID> --client-secret <SECRET> \
--redirect-uri https://localhost:9002/callback --paste
anafpy auth status # show stored token validity
anafpy auth logout # remove the stored tokens (signs this machine out)
This opens your browser for the certificate step, captures the authorization code (pasted, or via a local TLS listener), exchanges it for tokens, and stores them in the OS credential store (macOS Keychain, Windows Credential Manager, Linux Secret Service/KWallet — the default backend; a JSON-file backend is the opt-out for Docker/headless hosts). Tokens then refresh headlessly for ~a year (access token 90 days, refresh token 365 days), so the cert is needed only about once a year. The authentication guide covers the capture modes, token storage, and signing out.
Usage
The clients are async and used as context managers. Build a TokenProvider over your
stored tokens, then call discrete operations:
from anafpy.auth import KeyringTokenStore, TokenProvider
from anafpy.efactura import EFacturaClient
provider = TokenProvider(
client_id="<ID>",
client_secret="<SECRET>",
store=KeyringTokenStore(), # OS credential store (the default backend)
# or FileTokenStore("~/.anafpy/tokens.json") for headless/Docker hosts
)
async with EFacturaClient(provider) as efactura:
result = await efactura.upload(invoice_xml, cif="RO12345678")
status = await efactura.get_status(result.upload_id)
# or, in one call: status = await efactura.upload_and_wait(invoice_xml, cif=...)
Discrete methods make a single call (no transport retry). HTTP/auth problems raise
AnafError subclasses; business outcomes (a nok rejection, BR-RO findings) come
back as typed values, not exceptions. On HTTP 429 the client raises AnafRateLimitError
exposing retry_after rather than backing off itself.
e-Transport declarations are authored from typed models — no XML in sight. A
FlatTransport holds the partner, vehicle, route, goods, and documents as
structured fields (enum-coded values accepted by ANAF code or by name), and
upload_document renders and files it in one step:
from anafpy.etransport import ETransportClient, FlatDeletion, FlatTransport
declaration = FlatTransport(...) # full example in the e-Transport guide
async with ETransportClient(provider) as etransport:
result = await etransport.upload_document(declaration, cif="12345678")
print(result.uit) # the UIT code, issued at upload time
# later: delete / confirm / change vehicle on that UIT the same way, e.g.
await etransport.upload_document(FlatDeletion(uit=result.uit), cif="12345678")
The e-Transport guide has the complete worked declaration.
The public registries need no auth at all:
from anafpy.public import PublicClient
async with PublicClient() as public:
lookup = await public.lookup_taxpayers(["RO12345678"])
if lookup.found:
record = lookup.found[0]
print(record.name, record.vat_registered, record.efactura_registered)
MCP server
The anafpy[mcp] extra ships a local stdio MCP server that wraps the clients as
Cowork skills. The server is best-effort: configuring it — including registering
your own OAuth application on ANAF's portal — is your responsibility, and the
setup walkthrough walks you
through every step. Run it host-side, where the token store written by
anafpy auth login lives:
ANAFPY_CLIENT_ID=... ANAFPY_CLIENT_SECRET=... ANAFPY_CIF=... \
python -m anafpy.mcp # or the `anafpy-mcp` console script
The surface is read-first: freely callable read tools (the anaf_* public
lookups and efactura_validate need no login at all; auth_status, the
e-Factura inbox — which can also save the signed ZIP and ANAF's official PDF
rendering to disk — and the e-Transport reads need the one-time login) plus
two-step gated filing for e-Transport: etransport_prepare* composes the
declaration from structured fields and returns a preview + a single-use
confirmation token bound to the exact document and CIF; etransport_submit files
only with that token and confirm=True. The e-Factura surface is read-only —
outbound invoices come from your invoicing software, which files with ANAF itself.
The compiled ANAF reference is served as read-only resources, and workflow
playbooks (like etransport-declare, which takes a declaration from any source —
an email, a PDF invoice, a CMR — through extract → prepare → your approval →
submit → UIT) as MCP prompts. See the
tools overview and
workflow skills for the
full picture.
Register the server with any MCP client — e.g. with Claude Code, from a source checkout (locked deps, no PyPI needed):
claude mcp add anafpy \
-e ANAFPY_CLIENT_ID=... -e ANAFPY_CLIENT_SECRET=... -e ANAFPY_CIF=... \
-- uv run --directory /path/to/anafpy --frozen --extra mcp anafpy-mcp
No credentials yet? The server still starts; the public anaf_* lookups
(registries, financial statements) and efactura_validate are fully usable. The
remaining e-Factura / e-Transport tools unlock once you set the credentials and run
the one-time anafpy auth login in a terminal.
Development
uv sync --all-extras
uv run pytest # respx-mocked, credential-free
uv run ruff check . && uv run ruff format --check .
uv run mypy # strict
ANAFPY_LIVE=1 uv run pytest -m live # opt-in: live smoke against real ANAF
The live marker re-confirms wire shapes against real ANAF endpoints and is skipped
by default (not a gate). It covers the public services (no credentials needed) plus,
with .env credentials and an anafpy auth login token store, the authenticated
TEST environment: read-only shape checks and two roundtrips that actually file a
test document — a minimal CIUS-RO invoice (e-Factura) and a domestic transport
declaration composed via the flat authoring models (e-Transport). The roundtrips
target TEST only, never production.
Models under efactura/ubl/ and etransport/schema/ are generated (via
scripts/generate_*.py from vendored XSDs in schemas/) and must not be hand-edited.
See CLAUDE.md for repository conventions.
License
Apache-2.0. Independent / unofficial — not affiliated with ANAF.
anafpy is free to use and provided as-is, with no warranty: it moves documents to and from ANAF, it does not give tax advice, and filing outcomes are your responsibility. The MCP server is best-effort — configuring it, provisioning your own OAuth application on ANAF's portal, and holding the qualified certificate are up to you (the setup walkthrough covers all of it).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file anafpy-0.1.2.tar.gz.
File metadata
- Download URL: anafpy-0.1.2.tar.gz
- Upload date:
- Size: 3.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d13e298e1417472cb3dcd23e7e8540ac7e0eb657385608bd12e7a0d82cb0a4c
|
|
| MD5 |
77c1adfee6d4ee709b298a0398409edc
|
|
| BLAKE2b-256 |
4c6363374cf651f38c72bff75540f4cca8ac20bc97d94701c4d8e63591f457d2
|
Provenance
The following attestation bundles were made for anafpy-0.1.2.tar.gz:
Publisher:
release.yml on robert-malai/anafpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
anafpy-0.1.2.tar.gz -
Subject digest:
2d13e298e1417472cb3dcd23e7e8540ac7e0eb657385608bd12e7a0d82cb0a4c - Sigstore transparency entry: 2098639212
- Sigstore integration time:
-
Permalink:
robert-malai/anafpy@507e11c3aa83def3f922e5939cf131251bc31bac -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/robert-malai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@507e11c3aa83def3f922e5939cf131251bc31bac -
Trigger Event:
push
-
Statement type:
File details
Details for the file anafpy-0.1.2-py3-none-any.whl.
File metadata
- Download URL: anafpy-0.1.2-py3-none-any.whl
- Upload date:
- Size: 368.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32723c20b220558723878c10a2e66f6057efa7fa8d4f78143e82cc3df0657212
|
|
| MD5 |
d9ac6cf8090c02827b5357a1221a698a
|
|
| BLAKE2b-256 |
8b9d6ccb96827eee5a5699b9f5568515c43d9c72cb4860ed676a01f14e8dc7dd
|
Provenance
The following attestation bundles were made for anafpy-0.1.2-py3-none-any.whl:
Publisher:
release.yml on robert-malai/anafpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
anafpy-0.1.2-py3-none-any.whl -
Subject digest:
32723c20b220558723878c10a2e66f6057efa7fa8d4f78143e82cc3df0657212 - Sigstore transparency entry: 2098639806
- Sigstore integration time:
-
Permalink:
robert-malai/anafpy@507e11c3aa83def3f922e5939cf131251bc31bac -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/robert-malai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@507e11c3aa83def3f922e5939cf131251bc31bac -
Trigger Event:
push
-
Statement type: