Пропустите установку. Заработает меньше чем за 2 минуты.
Начните бесплатный период на cloud.anythingmcp.com, добавьте Quipu одним кликом и направьте свой ИИ-клиент (Claude, ChatGPT, Copilot или Cursor) на сгенерированный MCP-эндпоинт. Без Docker, без git clone, без опыта разработки.
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.
Попробуй спросить
Примеры промптов для Quipu
Кликни по промпту — он скопируется. Вставь в Claude, ChatGPT, Cursor, Gemini, Copilot или OpenClaw и запусти через этот коннектор.
Claude — это AI, он может ошибаться. Проверяйте ответы.
💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → Quipu, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без
git clone, без локального сервера.
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.
Предварительные требования
Полные инструкции по настройке встроены в коннектор (видны в магазине при выборе коннектора). Требуемые переменные окружения:
QUIPU_CLIENT_ID, QUIPU_CLIENT_SECRET
Шаг 1 — Получите учётные данные
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)
Шаг 2 — Установите адаптер
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
Шаг 3 — Добавьте коннектор в Gemini
Gemini CLI читает MCP-серверы из ~/.gemini/settings.json (или %APPDATA%\gemini\settings.json в Windows). Добавьте:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Получите MCP API key в AnythingMCP → Profile → MCP API Keys → New Key.
- Сохраните файл и перезапустите
gemini. - Запустите
/mcpв Gemini CLI —Quipuдолжен быть доступен. - Vertex AI Studio: передайте
https://cloud.anythingmcp.com/mcpв массивtoolsзапроса с тем же Bearer-заголовком.
Доступные инструменты
| 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 или 2.x MCP? Да — Gemini CLI ≥ 0.4 и Vertex AI tools API принимают MCP-коннекторы httpUrl с Bearer-заголовком.
Следующие шаги
Это руководство помогло?