1c MCP Server

MCP server for 1C:Enterprise (1С) over OData. Ask your accounting database in natural language — debtors, sales, taxes, cash flow — from any MCP

Local serverstdioTypeScript

What is the 1c MCP server?

Most database access work still happens through a UI a human drives. 1c MCP server moves it into the conversation instead. MCP server for 1C:Enterprise (1С) over OData. Ask your accounting database in natural language — debtors, sales, taxes, cash flow — from any MCP client (Claude, Cursor, VS Code, local models…). 55 tools, run with npx, nothing installed.

The short version

Ниже — Claude Desktop, но диалог выглядит так же в любом MCP-клиенте.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • dry — run по умолчанию** — инструмент сначала показывает, что создаст, и пишет только при confirm=true;
  • read.organization.get_organization_card — Карточка организации: ИНН/КПП/ОГРН, ОКВЭД, налоговый орган, адреса, банковский счёт, директор и главный бухгалтер
  • read.analytics.get_payments_breakdown — Приход/расход по виду операции, месяцу, контрагенту, статье ДДС — «сколько заплатили ИП за год», «проценты по депозиту»
  • read.analytics.get_taxes_paid — Уплаченные налоги и взносы за период, с разбивкой по виду налога
  • read.analytics.get_deal_history — Хронология движений по сделке (код в назначении платежа) или договору
  • read.system.health_check — Проверка соединения и авторизации
  • write.counterparty.create_counterparty — Контрагент (+ телефон/email/адрес/ОГРН)
  • write.catalog.create_nomenclature — Номенклатура (папка, артикул, признак услуги)
  • write.catalog.create_contract — Договор (вид, номер, валюта, тип цен, руководитель контрагента)
  • write.warehouse.create_transfer — Перемещение товаров между складами
  • write.warehouse.create_inventory — Инвентаризация товаров на складе
  • write.sales.create_act — Реализация услуг (акт)

What it needs from you

Configuration is passed through the environment: ODATA_BASE_URL, ODATA_USERNAME, ODATA_PASSWORD. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

The server ships on npm as 1c-odata-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

How it compares

This sits in the database access group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. 1c's toolset — dry, read.organization.get_organization_card, read.analytics.get_payments_breakdown and 11 more — is a fair guide to whether it matches your workflow. It is maintained by GitHub Actions; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch 1c.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
dryrun по умолчанию** — инструмент сначала показывает, что создаст, и пишет только при confirm=true;
read.organization.get_organization_cardКарточка организации: ИНН/КПП/ОГРН, ОКВЭД, налоговый орган, адреса, банковский счёт, директор и главный бухгалтер
read.analytics.get_payments_breakdownПриход/расход по виду операции, месяцу, контрагенту, статье ДДС — «сколько заплатили ИП за год», «проценты по депозиту»
read.analytics.get_taxes_paidУплаченные налоги и взносы за период, с разбивкой по виду налога
read.analytics.get_deal_historyХронология движений по сделке (код в назначении платежа) или договору
read.system.health_checkПроверка соединения и авторизации
write.counterparty.create_counterpartyКонтрагент (+ телефон/email/адрес/ОГРН)
write.catalog.create_nomenclatureНоменклатура (папка, артикул, признак услуги)
write.catalog.create_contractДоговор (вид, номер, валюта, тип цен, руководитель контрагента)
write.warehouse.create_transferПеремещение товаров между складами
write.warehouse.create_inventoryИнвентаризация товаров на складе
write.sales.create_actРеализация услуг (акт)
write.sales.create_services_actАкт об оказании услуг (доходы/расходы по номенклатурной группе)
write.money.create_bank_writeoffСписание с расчётного счёта (исходящий платёж, вид операции обязателен)

How to install the 1c MCP server

{
  "mcpServers": {
    "1c-odata": {
      "command": "npx",
      "args": ["-y", "1c-odata-mcp"],
      "env": {
        "ODATA_BASE_URL": "your-value",
        "ODATA_USERNAME": "your-value",
        "ODATA_PASSWORD": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
ODATA_BASE_URLEndpoint or connection string the server talks to.Yes
ODATA_USERNAMEConfiguration value read at startup.Optional
ODATA_PASSWORDConfiguration value read at startup.Optional

Example prompts to try

  • Use 1c to dry.
  • Use 1c to read.organization.get organization card.
  • Use 1c to read.analytics.get payments breakdown.

Frequently asked questions

It connects 1c to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (dry, read.organization.get_organization_card, read.analytics.get_payments_breakdown, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with 1c directly.