Connector guide2-minute read11 MCP toolsEN · DE · IT

Как подключить ERPNext к Cursor — через MCP

ERPNext / Frappe: read and write any DocType — customers, sales orders, invoices, items, stock and leads — with Frappe's filter syntax, plus a generic resource escape hatch. Token auth against your own instance.

HCBy HelpCode teamОбновлено 2 min read Открытый код на GitHub

Без банковской карты · 7 дней пробного периода · Есть вариант self-host

ERPNext

ERPNext

ERPNext / Frappe: read and write any DocType — customers, sales orders, invoices, items, stock and leads — with Frappe's filter syntax, plus a generic resource escape hatch. Token auth against your own instance.

инструментов

11

Регион

INTL

Категория

ERP

Аутентификация

API Key

Требуемые env-vars

ERPNEXT_URLERPNEXT_API_KEYERPNEXT_API_SECRET
Установить в Cloud одним кликом

7 дней бесплатно · Без карты

  • 7 дней бесплатно
    Без банковской карты
  • GDPR & SOC 2 ready
    Данные в ЕС, журналы аудита
  • Открытый код на GitHub
    Open source · AGPL-3.0
  • Работает с ChatGPT, Claude, Gemini
    Любой MCP-совместимый клиент

Пропустите установку. Заработает меньше чем за 2 минуты.

Начните бесплатный период на cloud.anythingmcp.com, добавьте ERPNext одним кликом и направьте свой ИИ-клиент (Claude, ChatGPT, Copilot или Cursor) на сгенерированный MCP-эндпоинт. Без Docker, без git clone, без опыта разработки.

Начать бесплатный период

Summary

ERPNext / Frappe: read and write any DocType — customers, sales orders, invoices, items, stock and leads — with Frappe's filter syntax, plus a generic resource escape hatch. Token auth against your own instance.

Попробуй спросить

Примеры промптов для ERPNext

Кликни по промпту — он скопируется. Вставь в Claude, ChatGPT, Cursor, Gemini, Copilot или OpenClaw и запусти через этот коннектор.

ERPNext · live via MCP
Поделиться
Opus 4.7

Claude — это AI, он может ошибаться. Проверяйте ответы.

💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → ERPNext, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без git clone, без локального сервера.

ERPNext + Cursor

ERPNext / Frappe: read and write any DocType — customers, sales orders, invoices, items, stock and leads — with Frappe's filter syntax, plus a generic resource escape hatch. Token auth against your own instance.

Предварительные требования

Полные инструкции по настройке встроены в коннектор (видны в магазине при выборе коннектора). Требуемые переменные окружения:

ERPNEXT_URL, ERPNEXT_API_KEY, ERPNEXT_API_SECRET

Шаг 1 — Получите учётные данные

Getting a key

  1. In ERPNext open the user you want the agent to act as → Settings → API AccessGenerate Keys. You receive an API key and an API secret; the secret is shown once.
  2. Set ERPNEXT_URL to your instance root (no trailing slash), ERPNEXT_API_KEY and ERPNEXT_API_SECRET.

The Authorization header is token key:secret — lower-case token, the two values joined by a colon. Not Bearer, not Basic. This is the single most common reason a correct ERPNext key 401s.

…(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 — Добавьте коннектор в Cursor

Cursor читает MCP-серверы из ~/.cursor/mcp.json. Добавьте эту запись:

{
  "mcpServers": {
    "anythingmcp": {
      "url": "https://cloud.anythingmcp.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
    }
  }
}
  1. Получите MCP API key в AnythingMCP → Profile → MCP API Keys → New Key.
  2. Сохраните файл и перезапустите Cursor.
  3. Откройте Cursor → Settings → MCP и убедитесь, что ERPNext отображается как "Connected".
  4. Начинайте чат — все инструменты ERPNext доступны.

Доступные инструменты

ToolWhat it does
erpnext_get_logged_userRead which user the API key belongs to
erpnext_list_documentsList documents of any DocType with Frappe filters
erpnext_get_documentRead one document of any DocType in full by its name (ERPNext's primary key), including its child tables
erpnext_count_documentsCount the documents of a DocType matching a filter, without transferring them
erpnext_get_doctype_metaDescribe a DocType: every field with its type, label, options and whether it is required
erpnext_list_customersList customers with their name, group, territory, currency and default payment terms
erpnext_list_sales_ordersList sales orders with their customer, date, delivery date, status and grand total
erpnext_list_sales_invoicesList sales invoices with their customer, posting date, due date, status and outstanding amount — the answer to 'what is still unpaid'
erpnext_list_itemsList items from the catalogue with their code, name, group, stock UOM and default rate
erpnext_list_stock_balanceRead per-warehouse stock: actual, reserved and projected quantity per item
erpnext_create_documentCreate a document of any DocType

FAQ

Поддерживает ли Cursor кастомные MCP-серверы на бесплатном тарифе? Да — MCP доступен на Hobby, Pro и Business.

Следующие шаги

Это руководство помогло?

Your ERPNext agent is one click away.

Install the connector, paste the key, prompt Cursor. Free for 7 days, no credit card.

Похожие руководства

connectors

Как подключить ERPNext к ChatGPT — через MCP

ERPNext / Frappe: read and write any DocType — customers, sales orders, invoices, items, stock and leads — with Frappe's filter syntax, plus a generic resource escape hatch. Token auth against your own instance.

connectors

Как подключить ERPNext к Claude — через MCP

ERPNext / Frappe: read and write any DocType — customers, sales orders, invoices, items, stock and leads — with Frappe's filter syntax, plus a generic resource escape hatch. Token auth against your own instance.

connectors

Как подключить ERPNext к Gemini — через MCP

ERPNext / Frappe: read and write any DocType — customers, sales orders, invoices, items, stock and leads — with Frappe's filter syntax, plus a generic resource escape hatch. Token auth against your own instance.

connectors

ERPNext в MCP — управляйте ERPNext из любого AI-агента

ERPNext / Frappe: read and write any DocType — customers, sales orders, invoices, items, stock and leads — with Frappe's filter syntax, plus a generic resource escape hatch. Token auth against your own instance.

connectors

Как подключить AFAS Profit к Cursor — через MCP

AFAS Profit — Dutch ERP and HR: read any published GetConnector, list what is available, and inspect a connector's metadata. Token auth with AFAS's base64-wrapped XML token.

connectors

Как подключить Aruba Fatturazione Elettronica к Cursor — через MCP

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.