Skip to main content

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 as anafpy. 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-side validare endpoint — there is no local rule engine. See the design notes for the full design and docs/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 anafpy CLI and an httpx.Auth integration for the clients.
  • EFacturaClient (async) — upload, get_status, download, validate_signature (checks the MF signature over a downloaded invoice), the upload_and_wait poll-until-terminal helper, and list_messages — a single async iterator that pages the message list under the hood (window by days or start/end; empty window → empty iterator, real ANAF errors → raise). download exposes three read tiers: raw signed bytes, the full UBL model, and an easy-to-read FlatInvoice view.
  • ETransportClient (async) — upload, get_status, info, upload_and_wait, list_notifications (same async-iterator shape), and upload_document, which composes and files any of the four flat documents — a FlatTransport declaration/correction, FlatDeletion, FlatConfirmation, or FlatVehicleChange — without the caller touching XML.
  • PublicClient (async) — ANAF's unauthenticated public services on webservicesp.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) and render_invoice_pdf (the official transformare PDF 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 modelsread_flat_invoice projects UBL into a small, easy-to-read FlatInvoice read view (lossy, with a complete flag); anafpy never composes UBL from it. The e-Transport flat models are bidirectional: read_flat_transport views a parsed document and build_etransport / render_etransport author 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

anafpy-0.1.1.tar.gz (3.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

anafpy-0.1.1-py3-none-any.whl (368.9 kB view details)

Uploaded Python 3

File details

Details for the file anafpy-0.1.1.tar.gz.

File metadata

  • Download URL: anafpy-0.1.1.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

Hashes for anafpy-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b399ebdb58cc3faa686e54e0521d75f9831b5e6c3bd6d0057a7c346461551c07
MD5 c8c79e165f4197a5bd4249106bd548e5
BLAKE2b-256 eaf20546e109791a199795a69a02f0603a69ba9d8619dc7bc88925a2a34ada91

See more details on using hashes here.

Provenance

The following attestation bundles were made for anafpy-0.1.1.tar.gz:

Publisher: release.yml on robert-malai/anafpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anafpy-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: anafpy-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 368.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for anafpy-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 561c0ad55d7ce10807720dfab9e64bc750ae043601ab7ce80d4f54f8e619deee
MD5 c904e949b1c99cf381fb94814f2f6204
BLAKE2b-256 d49819970fb358bb6992d95ea7be581e108a6b2a7129a4b48e45be161e6d45d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for anafpy-0.1.1-py3-none-any.whl:

Publisher: release.yml on robert-malai/anafpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page