Sáltate la instalación. Funcionando en menos de 2 minutos.
Inicia una prueba gratuita en cloud.anythingmcp.com, añade Fatture in Cloud con un clic y apunta tu cliente de IA (Claude, ChatGPT, Copilot o Cursor) al endpoint MCP generado. Sin Docker, sin git clone, sin experiencia de desarrollo.
Summary
Fatture in Cloud — the invoicing app of 580,000 Italian partite IVA: issued and received documents, clients, suppliers, products, receipts and the VAT-relevant e-invoice status. REST API v2, OAuth 2.0.
Prueba a pedir
Prompts de ejemplo para Fatture in Cloud
Haz clic en un prompt para copiarlo. Pégalo en Claude, ChatGPT, Cursor, Gemini, Copilot u OpenClaw para ejecutarlo contra este conector.
Claude es IA y puede equivocarse. Verifica siempre las respuestas.
💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → Fatture in Cloud, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
Fatture in Cloud + Gemini
Fatture in Cloud — the invoicing app of 580,000 Italian partite IVA: issued and received documents, clients, suppliers, products, receipts and the VAT-relevant e-invoice status. REST API v2, OAuth 2.0.
Requisitos previos
Las instrucciones de configuración completas están incluidas en el conector (visibles en el store al seleccionarlo). Las variables de entorno requeridas:
FIC_CLIENT_ID, FIC_CLIENT_SECRET, FIC_REFRESH_TOKEN, FIC_COMPANY_ID
Paso 1 — Obtener credenciales
Getting a token
- Register an application in the Fatture in Cloud developer console (developers.fattureincloud.it). You receive a client id and client secret.
- Run the authorization-code flow once for the account, requesting the scopes you need —
entity.clients:r,entity.suppliers:r,issued_documents:r,received_documents:r,products:r, and the:avariants for write. Keep the refresh token. - Set
FIC_CLIENT_ID,FIC_CLIENT_SECRET,FIC_REFRESH_TOKENandFIC_COMPANY_ID. AnythingMCP refreshes the access token on its own.
…(continued in the in-app connector instructions)
Paso 2 — Instalar el adapter
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
Paso 3 — Añadir el conector en Gemini
Gemini CLI lee servidores MCP desde ~/.gemini/settings.json (o %APPDATA%\gemini\settings.json en Windows). Añade:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Obtén tu MCP API key desde AnythingMCP → Perfil → MCP API Keys → Nueva Key.
- Guarda el archivo y reinicia
gemini. - Ejecuta
/mcpen la Gemini CLI —Fatture in Clouddebería aparecer como disponible. - Vertex AI Studio: pasa
https://cloud.anythingmcp.com/mcpal arraytoolsde tu petición con el mismo header Bearer.
Herramientas disponibles
| Tool | What it does |
|---|---|
fatture_in_cloud_list_companies | List the companies (aziende) this account can reach, with their id, name and VAT number |
fatture_in_cloud_list_issued_documents | List documents you issued — invoices, quotes, credit notes, proformas — with their number, date, client, total and payment status |
fatture_in_cloud_get_issued_document | Read one issued document in full: every line item with VAT rate, the payment schedule, the client's details and the e-invoice status in the |
fatture_in_cloud_list_received_documents | List supplier documents you have recorded — purchase invoices, credit notes and expenses — with their supplier, date, total and deductibilit |
fatture_in_cloud_list_clients | List clients with their name, VAT number, codice fiscale, address and the e-invoice routing code (codice destinatario or PEC) |
fatture_in_cloud_list_suppliers | List suppliers with their name, VAT number, codice fiscale and address, for the purchasing side of the ledger |
fatture_in_cloud_list_products | List products and services from the catalogue with their code, description, net price, VAT rate and stock level |
fatture_in_cloud_list_receipts | List receipts (corrispettivi) with their date, amount and payment method — the till-side record, separate from invoices |
fatture_in_cloud_get_company_info | Read the configured company's own details: name, VAT number, tax regime, address and plan |
FAQ
¿Gemini 1.5 Pro o 2.x soportan MCP? Sí — Gemini CLI ≥ 0.4 y la API de tools de Vertex AI aceptan conectores MCP httpUrl con header Bearer.
Siguientes pasos
¿Te ha sido útil esta guía?