Installation überspringen. In unter 2 Minuten einsatzbereit.
Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge Invoice Ninja mit einem Klick hinzu und richte deinen KI-Client (Claude, ChatGPT, Copilot oder Cursor) auf den erzeugten MCP-Endpoint. Kein Docker, kein git clone, keinerlei Entwicklungserfahrung nötig.
Summary
Invoice Ninja: clients, invoices, quotes, recurring invoices, payments, products, expenses and projects. REST API v5 on Invoice Ninja's hosted service or your own instance, API-token auth.
Frag einfach
Beispiel-Prompts für Invoice Ninja
Klick auf einen Prompt, um ihn zu kopieren. In Claude, ChatGPT, Cursor, Gemini, Copilot oder OpenClaw einfügen — und gegen diesen Connector laufen lassen.
Claude ist KI und kann Fehler machen. Bitte Antworten gegenprüfen.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → Invoice Ninja klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
Invoice Ninja + Gemini
Invoice Ninja: clients, invoices, quotes, recurring invoices, payments, products, expenses and projects. REST API v5 on Invoice Ninja's hosted service or your own instance, API-token auth.
Voraussetzungen
Die vollständige Setup-Anleitung ist in den Connector eingebaut (im Store sichtbar, wenn du den Connector auswählst). Benötigte Umgebungsvariablen für diesen Connector:
INVOICENINJA_URL, INVOICENINJA_API_TOKEN
Schritt 1 — Zugangsdaten holen
Getting a token
- Sign in and open Settings → Account Management → API Tokens (on v5; on a self-hosted instance the same page exists).
- Create a token and put it in
INVOICENINJA_API_TOKEN. - Set
INVOICENINJA_URL. For the hosted service that ishttps://invoicing.co; for a self-hosted instance, your own root. No trailing slash and no/api/v1— the adapter appends it.
The header is X-API-TOKEN.
One token, one company. Invoice Ninja supports several companies per account, and the token is bound to the one it was created in. A second company needs a second token and a second connector.
…(continued in the in-app connector instructions)
Schritt 2 — Adapter installieren
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Schritt 3 — Connector in Gemini hinzufügen
Gemini CLI liest MCP-Server aus ~/.gemini/settings.json (oder %APPDATA%\gemini\settings.json unter Windows). Hinzufügen:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Hole deinen MCP API Key aus AnythingMCP → Profil → MCP API Keys → Neuer Key.
- Speichern und
geminineu starten. /mcpin Gemini CLI ausführen —Invoice Ninjasollte als verfügbar gelistet sein.- Vertex AI Studio:
https://cloud.anythingmcp.com/mcpimtools-Array der Anfrage mit demselben Bearer-Header übergeben.
Verfügbare Tools
| Tool | What it does |
|---|---|
invoice_ninja_list_clients | List clients with their name, contacts, balance, paid-to-date total and currency |
invoice_ninja_get_client | Read one client in full: their contacts, addresses, payment terms, balance and the settings that override the company defaults for them |
invoice_ninja_list_invoices | List invoices with their number, date, due date, client, amount and balance |
invoice_ninja_get_invoice | Read one invoice in full: every line item with quantity, cost and tax, the totals, the balance outstanding and the payments applied |
invoice_ninja_list_quotes | List quotes with their number, date, client, amount and status — what is out with prospects and not yet converted into an invoice |
invoice_ninja_list_payments | List payments with their date, amount, method, client and the invoices they were applied to — the money that actually arrived |
invoice_ninja_list_recurring_invoices | List recurring invoices with their frequency, next send date, client and amount — the predictable part of the revenue |
invoice_ninja_list_products | List products with their key, notes, cost, price, quantity and tax settings |
invoice_ninja_list_expenses | List expenses with their date, vendor, category, amount and whether they have been billed to a client — the cost side of the ledger |
invoice_ninja_list_projects | List projects with their name, client, budgeted hours, task rate and due date — the anchor for time and profitability questions |
FAQ
Unterstützen Gemini 1.5 Pro oder 2.x MCP? Ja — Gemini CLI ≥ 0.4 und die Vertex AI Tools API akzeptieren MCP httpUrl-Connectors mit Bearer-Header.
Nächste Schritte
War dieser Guide hilfreich?