Skip to main content
Glama
Szotasz

Billingo MCP Server

by Szotasz
README.md
# Billingo MCP Server

An MCP (Model Context Protocol) server for the [Billingo](https://www.billingo.hu/) invoicing API (v3). This server enables AI assistants like Claude to manage invoices, partners, products, expenses, and more through natural language.

[Magyar nyelvű dokumentáció lentebb / Hungarian docs below](#magyar)

## Remote Usage (connectors.hu)

If you don't want to install locally, [connectors.hu](https://connectors.hu) provides a unified access point to Billingo (and other Hungarian business APIs). connectors.hu handles authentication and exposes `billingo_*` namespaced tools to your AI agent (Claude Code, Claude Desktop, etc.).

**[Connect via connectors.hu](https://connectors.hu)**

---

## Features

- **Documents/Invoices** — Create, list, cancel, copy, download PDF, send via email, manage payments, check NAV Online Szamla status
- **Partners** — Create, update, delete and search customers/suppliers
- **Products** — Manage your product/service catalog
- **Bank Accounts** — CRUD operations for company bank accounts
- **Spending/Expenses** — Track and manage business expenses
- **Document Export** — Export invoices to Excel/CSV
- **Organization** — Retrieve your company data
- **Utilities** — Verify tax numbers via NAV, get MNB currency exchange rates, list document blocks

## Available Tools (35+)

| Category | Tools |
|---|---|
| Documents | `list_documents`, `get_document`, `create_document`, `cancel_document`, `delete_draft`, `create_from_proforma`, `create_from_draft`, `create_modification_document`, `copy_document`, `download_document`, `get_document_public_url`, `send_document` |
| Payments | `get_payment`, `update_payment`, `delete_payment`, `get_online_szamla_status` |
| Partners | `list_partners`, `get_partner`, `create_partner`, `update_partner`, `delete_partner` |
| Products | `list_products`, `get_product`, `create_product`, `update_product`, `delete_product` |
| Bank Accounts | `list_bank_accounts`, `get_bank_account`, `create_bank_account`, `update_bank_account`, `delete_bank_account` |
| Spending | `list_spending`, `get_spending`, `create_spending`, `update_spending`, `delete_spending` |
| Export | `create_document_export`, `download_document_export` |
| Organization | `get_organization` |
| Utilities | `check_tax_number`, `get_currency_rates`, `list_document_blocks` |

## Prerequisites

- Node.js 18+
- A [Billingo](https://www.billingo.hu/) account with an API v3 key ([generate one here](https://app.billingo.hu/api-key))

## Local Installation

```bash
git clone https://github.com/Szotasz/billingo-mcp.git
cd billingo-mcp
npm install
npm run build
```

## Configuration

### Claude Code

Add to your `~/.claude/settings.json`:

```json
{
  "mcpServers": {
    "billingo": {
      "command": "node",
      "args": ["/path/to/billingo-mcp/dist/cli.js"],
      "env": {
        "BILLINGO_API_KEY": "your-billingo-api-key"
      }
    }
  }
}
```

### Claude Desktop

Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):

```json
{
  "mcpServers": {
    "billingo": {
      "command": "node",
      "args": ["/path/to/billingo-mcp/dist/cli.js"],
      "env": {
        "BILLINGO_API_KEY": "your-billingo-api-key"
      }
    }
  }
}
```

## Usage Examples

Once configured, you can ask your AI assistant:

- "List my invoices from last month"
- "Create an invoice for partner X with 2 items"
- "Download invoice #123 as PDF"
- "Check the tax number 12345678"
- "What is today's EUR/HUF exchange rate?"
- "Show me unpaid invoices"
- "Send invoice #456 to client@example.com"

## Support

If you find this project useful, you can support the development:

[![Support on Donably](https://img.shields.io/badge/Support-Donably-18b8c4)](https://www.donably.com/ai-a-mindennapokban-szabolccsal)

## License

MIT

---

<a name="magyar"></a>

# Billingo MCP Szerver (Magyar)

MCP (Model Context Protocol) szerver a [Billingo](https://www.billingo.hu/) számlázó API-hoz (v3). Ezzel a szerverrel AI asszisztensek (pl. Claude) természetes nyelven kezelhetik a számlákat, partnereket, termékeket, költségeket és egyéb számlázási feladatokat.

## Távoli használat (connectors.hu)

Ha nem szeretnéd helyben telepíteni, a [connectors.hu](https://connectors.hu) egységes hozzáférési pontot ad a Billingóhoz (és további magyar üzleti API-khoz). A connectors.hu kezeli a hitelesítést, és a `billingo_*` namespacelt tool-okat hozzáférhetővé teszi az AI ügynököd számára (Claude Code, Claude Desktop, stb.).

**[Csatlakozás a connectors.hu-n](https://connectors.hu)**

## Funkciók

- **Számlák/Bizonylatok** — Létrehozás, listázás, sztornózás, másolás, PDF letöltés, e-mail küldés, fizetéskezelés, NAV Online Számla státusz
- **Partnerek** — Ügyfelek/szállítók kezelése (CRUD + keresés)
- **Termékek** — Termék/szolgáltatás katalógus kezelése
- **Bankszámlák** — Céges bankszámlák kezelése
- **Költségek** — Üzleti költségek rögzítése és kezelése
- **Dokumentum export** — Számlák exportálása Excel/CSV formátumban
- **Szervezet** — Cégadatok lekérése
- **Segédeszközök** — NAV adószám-ellenőrzés, MNB árfolyamok, számlatömbök listázása

## Előfeltételek

- Node.js 18+
- [Billingo](https://www.billingo.hu/) fiók API v3 kulccsal ([generálás itt](https://app.billingo.hu/api-key))

## Helyi telepítés

```bash
git clone https://github.com/Szotasz/billingo-mcp.git
cd billingo-mcp
npm install
npm run build
```

## Beállítás

### Claude Code

Add hozzá a `~/.claude/settings.json` fájlhoz:

```json
{
  "mcpServers": {
    "billingo": {
      "command": "node",
      "args": ["/elérési/út/billingo-mcp/dist/cli.js"],
      "env": {
        "BILLINGO_API_KEY": "a-te-billingo-api-kulcsod"
      }
    }
  }
}
```

### Claude Desktop

Add hozzá a Claude Desktop konfighoz (`~/Library/Application Support/Claude/claude_desktop_config.json` macOS-en):

```json
{
  "mcpServers": {
    "billingo": {
      "command": "node",
      "args": ["/elérési/út/billingo-mcp/dist/cli.js"],
      "env": {
        "BILLINGO_API_KEY": "a-te-billingo-api-kulcsod"
      }
    }
  }
}
```

## Használati példák

A beállítás után az AI asszisztensnek mondhatod:

- "Listázd az elmúlt havi számláimat"
- "Készíts egy számlát X partnernek 2 tétellel"
- "Töltsd le a 123-as számlát PDF-ben"
- "Ellenőrizd a 12345678 adószámot"
- "Mi a mai EUR/HUF árfolyam?"
- "Mutasd a kifizetetlen számlákat"
- "Küldd el a 456-os számlát a ugyfel@pelda.hu címre"

## Támogatás

Ha hasznosnak találtad ezt a projektet, támogathatod a fejlesztést:

[![Támogass a Donably-n](https://img.shields.io/badge/T%C3%A1mogat%C3%A1s-Donably-18b8c4)](https://www.donably.com/ai-a-mindennapokban-szabolccsal)

## Licensz

MIT

TDQS

B3.2/5.0

Scored across 42 tools

Disambiguation5/5

Each tool targets a distinct operation or entity (e.g., documents, partners, products) with no overlap. Even document creation variants (new, from draft, from proforma) are clearly separated by purpose.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., create_document, delete_partner, download_document_export), making the API predictable and easy to navigate.

Tool Count3/5

42 tools is high, but it covers a broad billing domain with multiple entities and operations. While justifiable, it exceeds the typical recommended range for an MCP server.

Completeness5/5

The tool set covers full CRUD for all major entities (documents, partners, products, bank accounts, spendings, payments) plus additional operations like cancel, copy, send, export, tax check, and currency rates. No obvious gaps.

Maintenance

ActivityInactive
ResponsivenessNo issues