1C AI Workbench
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@1C AI WorkbenchShow metadata for document 'PurchaseOrder'."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
1C AI Workbench
Локальный read-only AI workbench для навигации, аудита и анализа конфигураций 1C:Enterprise 8.3 через MCP-совместимые клиенты.
Workbench зеркалирует XML-выгрузку 1С, локально индексирует BSL-код и метаданные, а затем отдаёт структурированные MCP-инструменты в opencode, Cursor, VS Code, desktop MCP client или любой клиент, поддерживающий stdio MCP-серверы.
Production assets публикуются только после двухфазного signed-candidate
процесса: сборка и подпись, проверка тех же файлов на чистой Windows, затем
публикация без пересборки. Контракт процесса описан в
docs/RELEASE_CONTRACT_V1.md.
Текущий статус
Workbench готов для локального read-only использования.
Метрика | Цель | Факт |
| 6/6 Ready | 6/6 Ready |
| all green | 67/67 passed |
| all green | PASS: 8 / FAIL: 0 / SKIP: 1 |
| built & in release | 25.6 MB |
Related MCP server: 1C_MCP_SERVER_OWN
Что решает
Командам 1С часто нужны быстрые ответы на вопросы:
где записывается этот регистр;
какому объекту принадлежит форма или модуль;
какие процедуры экспортирует модуль;
какие объекты метаданных дублируются, пустые или подозрительные;
что изменилось между двумя выгрузками конфигурации;
где разработчику вручную проверить найденное место.
1C AI Workbench даёт внешнему клиенту локальные доказательства, а не заставляет внешний сервис угадывать по обрывкам кода.
Архитектура
XML-выгрузка 1С
C:\1c-ai-client\dump
|
| read-only зеркало
v
source mirror
generated\index\source-mirror
|
| индексируется bsl-indexer
v
code-index-mcp
Rust MCP server + SQLite index
|
+--> skills-bridge Python/FastMCP, read-only 1C skills
+--> prompt-gallery Python/FastMCP, callable prompts
+--> help-index-mcp Python/FastMCP, local .hbk help search
+--> ibcmd-bridge Python/FastMCP, Phase B, disabled by default
|
v
MCP client
opencode / Cursor / VS Code / desktop MCP clientВсе дефолтные сценарии работают с экспортированными файлами или с generated mirror. Исходная выгрузка не изменяется, live write path не включается автоматически.
Требования
Windows 10/11.
PowerShell 5.1+.
Git for Windows.
Python 3.10+ для Python MCP bridges.
Подписанный installer с prebuilt
bsl-indexer.exe, проверенный release artifact либо Rust toolchain для сборки индексатора из исходников.Файлы выгрузки конфигурации 1С в
C:\1c-ai-client\dump.Опционально: Rust toolchain с
cargoиrustc, если нужно пересобратьbsl-indexerиз исходников.
scripts\setup.ps1 создаёт .venv, ставит зависимости bridge-серверов и
принимает только code-index 0.45.0. Автозагрузка разрешается лишь с явно
переданными -ReleaseTag и -IndexerSha256; отсутствующий pin падает закрыто.
Быстрый старт
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
cd <workbench-root>
.\scripts\setup.ps1
.\scripts\16_check_skills_bridge.ps1
.\scripts\17_check_ibcmd_bridge.ps1
.\scripts\18_check_prompt_gallery.ps1
.\scripts\04_index_1c_dump.ps1 -DumpRoot "C:\1c-ai-client\dump" -Force
.\scripts\06_healthcheck.ps1
.\scripts\22_run_e2e_smoke.ps1 -DumpRoot "C:\1c-ai-client\dump" -SkipIndexПосле этого можно открыть интерактивный launcher:
.\START_HERE.ps1Ручной путь:
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
cd <workbench-root>
.\scripts\setup.ps1
.\scripts\01_check_env.ps1
.\scripts\02_clone_repos.ps1
.\scripts\04_index_1c_dump.ps1 -DumpRoot "C:\1c-ai-client\dump" -Force
.\scripts\06_healthcheck.ps1scripts\03_build_bsl_indexer.ps1 нужен только разработчикам, которым нужно
пересобрать Rust-бинарник локально вместо использования release artifact.
MCP-серверы
1c-code-index
Основной Rust MCP-сервер. Индексирует и отдаёт BSL/code metadata.
.\tools\code-index-mcp\target\release\bsl-indexer.exe serve --path onec=.\generated\index\source-mirror --transport stdio1c-skills
Python FastMCP bridge для read-only 1C-specific skills: 16 инструментов
(meta_info, form_info, skd_info, role_info, cf_info, и др.).
.\scripts\16_check_skills_bridge.ps11c-prompt-gallery
Python FastMCP bridge, публикующий каждый prompts/*.md как callable
MCP-инструмент. Публичные prompts: explain-module, find-object,
review-bsl, trace-flow.
.\scripts\18_check_prompt_gallery.ps11c-help-index
Python FastMCP bridge для локальной справки 1С. Индексирует .hbk файлы из
установленной платформы 1С в SQLite FTS5.
1c-ibcmd
Экспериментальный Phase B bridge для утилиты ibcmd. По умолчанию выключен.
Write operations заблокированы без IBCMD_ALLOW_WRITE=1 и confirm_replace=true.
.\scripts\17_check_ibcmd_bridge.ps1Проверка
.\scripts\16_check_skills_bridge.ps1
.\scripts\17_check_ibcmd_bridge.ps1
.\scripts\18_check_prompt_gallery.ps1
.\scripts\06_healthcheck.ps1Контракт ответа AI
Хороший ответ должен содержать:
короткий вывод;
имя и тип объекта 1С;
путь к файлу внутри
generated\index\source-mirror;модуль, процедуру или функцию, если найдены;
evidence snippet;
уровень уверенности;
шаги ручной проверки в Конфигураторе или EDT.
Демо
.\scripts\11_open_demo_showcase.ps1Демо-материалы: demo-showcase\index.html, demo-questions\questions_basic.md.
Модель безопасности
Дефолтный режим локальный и read-only.
Source dump зеркалируется перед индексацией.
Generated indexes и logs остаются внутри локальной папки workbench.
API keys принадлежат клиенту/оператору и настраиваются ими.
Проприетарные бинарники 1С не бандлятся.
ibcmdlive/write flows выключены по умолчанию.
Лицензии и атрибуция
Репозиторий распространяется под MIT (см. LICENSE). Атрибуция и
границы заимствований описаны в docs/legal/BORROWING_MAP.md.
Ключевые источники:
cc-1c-skillsот Nikolay-Shirokov, MITBSL Language Server
OneScript
Vanessa Runner
Commercial
Commercial pilots (premium prompts, golden answers, enterprise playbook, named support) are available from the maintainer. See docs/COMMERCIAL.md or contact the maintainer directly.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceAn MCP server for 1C:Enterprise that provides AI assistants with access to configuration data via vector search, structural indexing, and call graphs. It enables semantic code queries and rapid metadata object lookups without requiring the direct reading of raw files.Last updated74AGPL 3.0
- Flicense-qualityDmaintenanceEnables AI agents to interact with 1C:Enterprise databases through natural language, providing metadata retrieval, configuration analysis, and code generation.Last updated9
- Flicense-qualityDmaintenanceActs as a bridge between AI agents (Claude, Cursor) and 1C:Enterprise databases, enabling metadata retrieval, configuration analysis, and code generation through natural language using the MCP protocol.Last updated
- Flicense-qualityCmaintenanceMCP server for searching and analyzing 1C enterprise metadata and BSL code using a SQLite backend. Enables querying configuration structure, code routines, and performing compliance checks via natural language.Last updated
Related MCP Connectors
Read-only MCP connector serving the Run It on AI book; index and Implementation Blocks are free.
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
Zero-config MCP security scanner for AI-generated apps. 25K+ vulnerability patterns.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/timoshinoleg-eng/1c-ai-workbench'
If you have feedback or need assistance with the MCP directory API, please join our Discord server