Metadata-Version: 2.4
Name: e-invoice-mcp
Version: 0.1.14
Summary: MCP Server for Fintom8 E-Invoicing services (Conversion, Validation, Correction)
Author-email: Igor Nikolaienko <igor@fintom8.com>
Project-URL: Homepage, https://github.com/NikolaienkoIgor/Fintom8-E-invoice-MCP-server
Project-URL: Issues, https://github.com/NikolaienkoIgor/Fintom8-E-invoice-MCP-server/issues
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: fastmcp
Requires-Dist: httpx

# Fintom8 E-Invoicing Agent (MCP)

[![PyPI version](https://img.shields.io/pypi/v/e-invoice-mcp.svg)](https://pypi.org/project/e-invoice-mcp/)
[![MCP Certified](https://img.shields.io/badge/MCP-Certified-blue)](https://mcpmarket.com)
[![Peppol Ready](https://img.shields.io/badge/Peppol-3.0.20-green)](https://fintom8.com)

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

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

---

## 🚀 Features

-   **PDF to UBL Conversion:** Use Gemini-powered AI to extract data from PDF invoices and generate compliant XML.
-   **Automated Validation:** Instant checks against EN16931 and Peppol rules.
-   **Correction:** Automatically fix non-compliant XML invoices.

---

## 🛠️ Installation

The easiest way to use the server is to install it via pip:

```bash
pip install e-invoice-mcp
```

### Run the Server
Once installed, you can start the server with:
```bash
e-invoice-mcp
```

---

## 🔑 AI Client Configuration

### Claude Desktop (Action required)
To use these tools in Claude, add the following to your configuration file:
**File:** `~/Library/Application Support/Claude/claude_desktop_config.json`

```json
{
  "mcpServers": {
    "fintom8": {
      "command": "e-invoice-mcp"
    }
  }
}
```

---

## 📦 Included Tools

### 1. `convert_pdf_to_invoice`
Converts PDF invoices to structured UBL format.
-   **Args**: `pdf_path` (path).
-   **Output**: UBL XML.

### 2. `validate_invoice` (Basic Validation)
Validates UBL/Peppol XML invoices against compliance rules.
-   **Args**: `xml_content` (string) or `xml_path` (path).
-   **Output**: Simple JSON report (is_valid, errors).

### 3. `validate_invoice_v2` (Advanced Validation)
Deep validation with optional AI explanations.
-   **Args**: `xml_content` (string) or `xml_path` (path).
-   **Output**: Detailed compliance report.

### 4. `correct_invoice_xml`
AI-powered correction of invalid XML invoices.
-   **Args**: `xml_content` (string) or `xml_path` (path).
-   **Output**: Fixed XML content.

---

## � Privacy & Security
This server acts as a thin client proxy. Data is processed on secure Fintom8 production servers and is not used for AI model training. 

**License:** MIT
**Website:** [fintom8.com](https://fintom8.com)
