Installation überspringen. In unter 2 Minuten einsatzbereit.
Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge Aruba Fatturazione Elettronica 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
Aruba Fatturazione Elettronica: send and track Italian e-invoices through the Sistema di Interscambio, read received invoices and their SDI notifications. Token auth against Aruba's B2B gateway.
Frag einfach
Beispiel-Prompts für Aruba Fatturazione Elettronica
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 → Aruba Fatturazione Elettronica klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
Aruba Fatturazione Elettronica + Cursor
Aruba Fatturazione Elettronica: send and track Italian e-invoices through the Sistema di Interscambio, read received invoices and their SDI notifications. Token auth against Aruba's B2B gateway.
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:
ARUBA_USERNAME, ARUBA_PASSWORD
Schritt 1 — Zugangsdaten holen
Getting credentials
- You need an active Aruba Fatturazione Elettronica subscription with the API option enabled.
- In the web console create the API user. Aruba issues a username of the form
XXXXXXXXand a password; these are not your Aruba portal login. - Set
ARUBA_USERNAMEandARUBA_PASSWORD. The adapter signs in at/services/auth/signinand reuses the returned bearer token, refreshing it when Aruba expires it. AnythingMCP keeps the token encrypted inconnector_auth_cache.
…(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 Cursor hinzufügen
Cursor liest MCP-Server aus ~/.cursor/mcp.json. Füge diesen Eintrag hinzu:
{
"mcpServers": {
"anythingmcp": {
"url": "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 Cursor neu starten.
- Cursor → Einstellungen → MCP öffnen und prüfen, ob
Aruba Fatturazione Elettronicaals "Connected" gelistet ist. - Chatten — alle
Aruba Fatturazione Elettronica-Tools sind aufrufbar.
Verfügbare Tools
| Tool | What it does |
|---|---|
aruba_fatturazione_list_sent_invoices | List invoices sent through the Sistema di Interscambio in a date range, with their number, recipient, total and current SDI state |
aruba_fatturazione_get_invoice_status | Read where one sent invoice currently stands with the SDI, including the notification history |
aruba_fatturazione_get_sent_invoice | Fetch one sent invoice as base64-encoded FatturaPA XML — the legally binding artefact, not a rendering of it |
aruba_fatturazione_list_received_invoices | List invoices received from suppliers through the SDI in a date range, with their sender, number, date and total |
aruba_fatturazione_get_received_invoice | Fetch one received supplier invoice as base64-encoded FatturaPA XML, for archiving or for feeding into bookkeeping |
aruba_fatturazione_list_notifications | List the SDI notifications attached to one document: receipt, delivery, non-delivery or rejection, each with its timestamp and reason code |
FAQ
Unterstützt Cursor benutzerdefinierte MCP-Server im Free-Tier? Ja — MCP ist auf Hobby, Pro und Business verfügbar.
Nächste Schritte
War dieser Guide hilfreich?