Skip to main content

MCP Server for Fintom8 E-Invoicing services (Conversion, Validation, Correction)

Project description

Fintom8 E-Invoicing Agent (MCP)

MCP Certified Peppol Ready

The official Model Context Protocol (MCP) server for Fintom8.

This server acts as an intelligent bridge to AI agentic Fintom8 E-Invoice Platform. It enables autonomous agents to validate, audit, and correct e-invoices against the latest European standards (EN16931) and Peppol regulations.

General Functionalities Provided Over MCP:

  • Convert Peppol UBL E-Invoice from PDF
  • Validate Peppol UBL E-Invoice
  • Correct Peppol UBL Invoice

Other formats and functionalities can be requested.

🚀 Features

  • Autonomous Validation: Agents can send XML content and receive detailed compliance reports.
  • Peppol 3.0.20 Support: Checks against the newest rules, including EAS code updates and PDF attachment handling.
  • Smart Explanations: The server returns structured error data that LLMs can easily parse to explain issues in human-readable language.

🛠️ Installation & Usage

Option 1: Using uvx (Recommended)

You can run this server directly without installing it globally:

uvx fintom8-mcp-server

Option 2: Clone and Run

  1. Clone this repository:

    git clone https://github.com/Fintom8/fintom8-mcp-server.git
    cd fintom8-mcp-server
    
  2. Install dependencies:

    pip install -e .
    
  3. Run the server:

    mcp run server.py
    

🔑 Configuration

By default, the server connects to the public Fintom8 endpoints:

  • Validation endpoint: https://fintom8platform-dev.ey.r.appspot.com/backend/invoice-agent
  • Converter endpoint: https://fintom8converter-prod.ey.r.appspot.com/backend/converter-workflowv2/

To use a specific API environment or authenticated tier, set the environment variables:

export FINTOM_API_URL="https://api.fintom8.com/v1/validate"
export FINTOM_CONVERTER_URL="https://api.fintom8.com/v1/convert"
export FINTOM_API_KEY="your-api-key"

📦 Tools Included

1. convert_pdf_to_invoice: Convert PDF invoices to UBL format

Converts PDF invoice documents to structured UBL/Peppol XML format using AI-powered extraction.

Input:

  • pdf_path (string, optional): Path to the PDF file to convert
  • pdf_base64 (string, optional): Base64-encoded PDF content
  • invoice_format (string, default: "ubl"): Output format for the invoice
  • gemini_model (string, default: "gemini-3-flash-preview"): The Gemini model to use
  • max_iterations (int, default: 3): Maximum number of AI iterations for refinement
  • verbose_output (bool, default: false): Include verbose processing details

Output: JSON containing the converted UBL invoice and conversion metadata

Note: Either pdf_path or pdf_base64 must be provided.

2. validate_invoice: Validate UBL/Peppol XML invoices

Validates a UBL/Peppol XML invoice against EN16931 and Peppol compliance rules.

Input:

  • xml_content (string): The raw XML string of the invoice to validate

Output: JSON compliance report (Valid/Invalid, Error List)

� Usage Examples

Example 1: Convert PDF to UBL Invoice

# Using with Claude Desktop or other MCP-compatible client
convert_pdf_to_invoice(
    pdf_path="/path/to/invoice.pdf",
    invoice_format="ubl",
    gemini_model="gemini-3-flash-preview",
    max_iterations=3
)

Example 2: Validate Converted Invoice

# First convert PDF
result = convert_pdf_to_invoice(pdf_path="/path/to/invoice.pdf")

# Then validate the result
validate_invoice(xml_content=result["ubl_xml"])

Example 3: Full Workflow

# 1. Convert PDF to UBL
converted = convert_pdf_to_invoice(
    pdf_path="/invoices/supplier_invoice.pdf",
    verbose_output=True
)

# 2. Validate the converted invoice
validation_result = validate_invoice(xml_content=converted["ubl_xml"])

# 3. Check compliance
if validation_result["is_valid"]:
    print("✅ Invoice is Peppol-compliant!")
else:
    print("❌ Validation errors:", validation_result["errors"])

�🛡️ Privacy & Security

This fintom8-mcp-server acts as a thin client proxy.

  • No data processing happens within this repository's code.
  • All validation logic is handled secure servers at Fintom8.
  • Your data is processed solely for the purpose of validation and is not used for AI model training.

📄 License

MIT License. See LICENSE for details.

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

e_invoice_mcp-0.1.0.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

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

e_invoice_mcp-0.1.0-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file e_invoice_mcp-0.1.0.tar.gz.

File metadata

  • Download URL: e_invoice_mcp-0.1.0.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for e_invoice_mcp-0.1.0.tar.gz
Algorithm Hash digest
SHA256 eee120de3db6d06cfdf289cb13c6b27face9d8370fb90552855d4c847d5deda6
MD5 f9ca365749949297cd8f2723758d126e
BLAKE2b-256 85f1da14ec564cb68f095a43873ceed29c0acb4565c943f83c6c80b0542460d2

See more details on using hashes here.

File details

Details for the file e_invoice_mcp-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: e_invoice_mcp-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for e_invoice_mcp-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d176a75350fa33e65cbbed2c59e1c0f4d826246ea24edb9a8dc655a16e68caaa
MD5 fc5f39fb4309d6b60bf34f1aa05508db
BLAKE2b-256 60684d8aacbcccb37ce1f399ac19f3830a4cdc4a26ed95ab01ec8ac56218dff7

See more details on using hashes here.

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