Sáltate la instalación. Funcionando en menos de 2 minutos.
Inicia una prueba gratuita en cloud.anythingmcp.com, añade Quipu 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
Quipu — Spanish invoicing and bookkeeping for autónomos and small companies: issued and received invoices, contacts, items, expenses and bank accounts. REST API, OAuth 2.0 client credentials.
Prueba a pedir
Prompts de ejemplo para Quipu
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 → Quipu, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
Quipu + Gemini
Quipu — Spanish invoicing and bookkeeping for autónomos and small companies: issued and received invoices, contacts, items, expenses and bank accounts. REST API, OAuth 2.0 client credentials.
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:
QUIPU_CLIENT_ID, QUIPU_CLIENT_SECRET
Paso 1 — Obtener credenciales
Getting credentials
- Sign in to Quipu and open the developer area (developers.getquipu.com) to register an application against your account.
- You receive a client id (
app_id) and client secret. Quipu's API uses the client-credentials grant, so there is no browser consent step for your own account's data. - Set
QUIPU_CLIENT_IDandQUIPU_CLIENT_SECRET. AnythingMCP fetches and 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 —Quipudeberí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 |
|---|---|
quipu_list_contacts | List contacts — customers and suppliers — with their name, NIF, address and the country they invoice from |
quipu_get_contact | Read one contact by id, with their full tax data, address and the default payment terms recorded against them |
quipu_list_invoices | List issued invoices with their number, date, contact, IVA and IRPF amounts, total and payment state — the revenue side |
quipu_get_invoice | Read one issued invoice in full: every line with its quantity, price, IVA rate and IRPF retention, plus the totals and the payments applied |
quipu_list_expenses | List received expenses and supplier invoices with their date, supplier, category, IVA and total — the cost side of the ledger |
quipu_list_items | List the items and services in the catalogue with their code, description, unit price and default IVA rate |
quipu_list_accounting_categories | List the accounting categories expenses are filed under, so a cost breakdown uses the categories the bookkeeper actually uses |
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?