Skip to main content
Glama

v8help

MCP-инструмент и CLI для чтения, индексации и поиска по файлам справки 1С:Предприятие (.hbk).

Извлекает HTML-страницы из V8-контейнера справки, конвертирует их в Markdown, строит полнотекстовый индекс (SQLite FTS5) и отдаёт поиск через MCP-сервер (stdio или streamable-http) или командную строку.

Возможности

  • Самодостаточная пересборка корпуса из .hbk одной командой build (распаковка → консолидация → индексация).

  • Чтение контейнеров Format15 с корректным парсингом TOC (включая свободные блоки, которые ломают штатный onec_dtools.read_entries).

  • Единый конвертер HTML → Markdown: заголовки по V8SH_pagetitle (синтакс- помощник), имена по пути архива (язык запросов и др.), переписывание ссылок v8help://... в относительные .md.

  • Полнотекстовый поиск FTS5 с лексическим расширением (разбиение PascalCase-идентификаторов, например СтрНайтиПоРегулярномуВыражению).

  • Ранжирование FTS с весами полей title/description/body (9/3/1): совпадение в заголовке или в секции «Описание» метода весомее совпадения в теле.

  • Чанкование длинных статей (настраиваемые chunk_size/chunk_overlap) с метаданными чанка (родитель, соседние чанки) — единицы поиска и чтения.

  • Векторный и гибридный поиск (FTS + эмбеддинги, RRF-фьюжн) через OpenAI-совместимый API эмбеддингов (LM Studio, Ollama, Hugging Face).

  • Асинхронная сборка через MCP: build возвращает job_id сразу, прогресс — через build_status; поиск при этом не блокируется (атомарная подмена БД).

  • Автодискавери: каталог bin платформы (реестр Uninstall/ФС) и доступные эмбеддеры на localhost-портах; настройка через MCP (config_get/config_set).

Related MCP server: onec-meta-mcp

Требования

  • Python 3.11+

  • Установленная платформа 1С:Предприятие (каталог bin с .hbk-файлами) — нужна только для пересборки индекса; для поиска достаточно готовой БД (см. «Готовые индексы»).

  • (опционально) эмбеддер для векторного поиска — LM Studio, Ollama или Hugging Face.

Установка

Локальная установка

python -m venv .venv
.venv\Scripts\activate        # Windows
pip install -e .

Установка регистрирует два консольных скрипта: v8help (CLI) и v8help-mcp (MCP-сервер).

Установка в Docker

Готовый контейнер с HTTP-интерфейсом (streamable-http), БД на volume и опциональной авто-загрузкой индекса — см. Запуск в Docker.

Быстрый старт

copy v8help.example.toml v8help.toml    # Windows (Linux/macOS: cp)
# укажите bin_dir своей платформы в v8help.toml
v8help build                            # собрать индекс (несколько минут)
v8help search "регулярному"             # поиск

Для векторного/гибридного поиска настройте эмбеддер (см. Эмбеддинги).

Документация

Лицензия

MIT — см. LICENSE.

Благодарности

Конвертер HTML → Markdown портирован из hbk-to-md.

Available Tools

9 tools
buildA

Пересобрать индекс: распаковка .hbk -> консолидация md-корпуса -> индексация FTS + чанкование. Выполняется асинхронно: возвращает job_id сразу, результат и прогресс — через build_status. Может занять минуты. Параметры chunk_size/chunk_overlap (в символах) задают размер чанка и перекрытие при разбиении длинных статей.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoЯзык: ru/en (по умолчанию из конфига)
forceNoПересобрать даже если индекс актуален
cleanupNoУдалить corpus после индексации
sourcesNoИсточники для сборки (по умолчанию все из конфига)
chunk_sizeNoЦелевой размер чанка в символах (по умолчанию 1500)
chunk_overlapNoПерекрытие соседних чанков в символах (по умолчанию 200)

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations present, the description carries the full burden and does well: it discloses asynchronous behavior (returns job_id immediately), potential runtime ('Может занять минуты'), and points to build_status for progress. It does not explicitly mention side effects like overwriting an existing index, but 'пересобрать' strongly implies it. This is meaningful behavioral context beyond a bare summary.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact: three sentences that front-load the purpose and pipeline, then add async behavior, timing, and parameter clarification. There is no fluff or repetition; every sentence contributes essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the absence of an output schema and annotations, the description covers a reasonable amount: async job lifecycle, job_id return, progress via build_status, expected duration, and chunking semantics. It does not detail default values or side effects for force/cleanup, but the schema handles parameter-level details, leaving only minor gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds extra meaning for chunk_size/chunk_overlap by explaining they are in characters and used when splitting long articles, which complements the schema's brief descriptions. This additional context justifies a slightly higher score.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description leads with a specific verb and resource: 'Пересобрать индекс' (rebuild the index), and outlines the exact pipeline: unpack .hbk, consolidate md corpus, FTS indexing + chunking. It also distinguishes itself from the sibling tool build_status by stating that build returns a job_id and that result/progress are obtained via build_status. This is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly indicates when to use this tool: when an index rebuild is needed. It also specifies the asynchronous nature and directs the agent to build_status for progress and results. However, it does not explicitly state when not to use it or mention alternatives such as search or discover, though the core use case is fairly obvious.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

build_statusA

Статус асинхронной сборки по job_id (running/done/error + прогресс).

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesИдентификатор job из build

TDQS

A3.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It reveals that the build is asynchronous, that the status can be running/done/error, and that progress information is included. It does not explicitly state that the operation is read-only or describe error payload details, but the core behavior is meaningfully disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The entire description is one compact sentence that front-loads the tool's purpose and packs in the async nature, possible statuses, and progress. There is no filler or redundant wording.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter status tool, the description covers the key context: it queries by job_id, is asynchronous, returns status values, and includes progress. A small gap remains because there is no output schema and no annotation, so the exact response shape and any polling/repeated-call semantics are left unspecified.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already fully documents job_id as 'Идентификатор job из build', and the description only repeats that the status is queried by job_id. With 100% schema description coverage, the description adds no new parameter meaning beyond the schema, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies this as a status lookup for an asynchronous build keyed by job_id, and enumerates expected states (running/done/error) plus progress. It is specific enough to be distinguished from the sibling tool 'build', but it does not explicitly name or contrast that alternative.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no explicit guidance on when to use this tool versus siblings such as 'build'. The mention of job_id implies it should be used after an asynchronous build, but the description does not state this prerequisite, polling behavior, or when an alternative would be more appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

config_getB

Текущие настройки (эффективный конфиг): эмбеддер, search.backend, bin_dir, книги и пр.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description carries the full burden of behavioral disclosure. It reveals that the tool exposes effective configuration values, but it does not state that the operation is read-only, describe the response format, or mention error or side-effect behavior. This is only minimal behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, compact sentence with no filler. The key idea ('current settings / effective config') is front-loaded, and the listed examples add substance without unnecessary length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter config retrieval tool, the description is adequate: it states the purpose and sample contents. But with no output schema and no annotations, it leaves the response format and full key set unspecified, and 'and so on' is vague. It is minimally viable but not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters and schema coverage is 100%, so the baseline is already 4. The description adds useful context by naming the config categories the result will contain, helping an agent anticipate the returned data beyond the empty schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description identifies a specific resource ('current settings / effective config') and lists concrete content areas such as embedder, search.backend, bin_dir, and books. It is clear this tool returns configuration, though it relies on the tool name to imply the read action and does not explicitly differentiate from config_set.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'current settings' implies this is the read-oriented counterpart to config_set, so an agent can infer when to use it. However, there is no explicit guidance about when to use this tool versus alternatives, no exclusions, and no mention of config_set as the write path.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

config_setA

Изменить настройки и сохранить в v8help.toml (атомарно). Ключи: search.backend (fts|hybrid|vectors), search.limit, search.max_chunks_per_page, build.cleanup, build.chunk_size, build.chunk_overlap, embedder.index/query.{model,base_url,api_key,dims,batch_size,embed_chars,threads}, bin_dir, lang, books.

ParametersJSON Schema
NameRequiredDescriptionDefault
valuesYesПлоские ключи -> значения

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden and does add useful context: the atomic save behavior to v8help.toml and the set of valid keys with value domains. But for a mutation tool it fails to disclose whether unspecified settings are preserved or reset, whether a rebuild is required for changes to take effect, or what validation/error behavior occurs on invalid keys.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single dense sentence with the action front-loaded ('Изменить настройки и сохранить в v8help.toml (атомарно)') followed by the key enumeration. The key list is long but earns its place since the schema does not enumerate valid keys. It could be better organized, but there is no wasted text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations and no output schema, the description covers the what and where well but omits post-invocation behavior: return value, whether a rebuild is needed after configuration changes, and whether values are merged into or replace the existing config. The nested embedder.index/query structure also hints at depth the flat-keys contract does not clarify. Adequate for basic invocation, with clear gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema only says 'Плоские ключи -> значения' (flat keys -> values) with 100% coverage, so the description adds real value by enumerating the valid keys and their value types — search.backend options, embedder.index/query sub-keys, bin_dir, lang, books. This exceeds the schema baseline of 3, though it stops short of specifying exact types for every key.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Изменить' — change), a precise resource (settings), and the persistence target (v8help.toml) with atomic-write semantics. The enumeration of valid keys and value domains (fts|hybrid|vectors) defines the exact scope, making it clearly distinguishable from the sibling config_get (its read counterpart).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The verb 'Изменить' implies this is the write tool and config_get is the read tool, and the key list tells the agent what can be modified. However, the description never explicitly says when to use this tool versus alternatives — no mention that reading settings should route to config_get, and no exclusions or conditions are given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

discoverA

Показать конфиг и автодискавери: каталог bin установленной платформы 1С (реестр Uninstall/ФС), доступные эмбеддеры на localhost-портах (LM Studio/Ollama) и состояние индекса.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Аннотаций нет, поэтому описание несет полную нагрузку. Оно раскрывает, что инструмент обращается к реестру Uninstall/ФС и сканирует localhost-порты, что полезно, но не заявляет явно об отсутствии побочных эффектов и не описывает поведение при недоступности компонентов.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Одно предложение с двоеточием, перечисляющее все ключевые элементы вывода без лишних слов. Главная идея вынесена в начало, каждый элемент списка информативен.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Для инструмента без параметров и без выходной схемы описание достаточно полно: перечислены каталог bin, эмбеддеры и состояние индекса. Не хватает формата возвращаемых данных и четких критериев выбора среди siblings, но для вызова discover этого достаточно.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

У инструмента 0 параметров, схема пуста и покрытие схемы 100%. Описанию не нужно пояснять аргументы; по правилам для нулевого числа параметров ставится базовая оценка 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Описание содержит конкретный глаг 'Показать' и точно перечисляет состав результата: каталог bin, эмбеддеры на localhost-портах, состояние индекса. Это отличиеет discover от sibling-инструментов, хотя явного противопоставления config_get/search нет.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Нет указаний, когда использовать discover вместо конкурирующих инструментов: не названы альтернативы, условия выбора или сценарии, где discover неуместен. Агент должен сам догадываться о месте этого инструмента среди config_get, search и related.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_pageA

Полный текст страницы справки по идентификатору (filename без .md или числовой id). id может быть строкой (одна страница) или массивом строк (несколько страниц одним вызовом, 2-10 статей, пока суммарно не превышено max_chars). Длинные статьи (>4000 символов) целиком НЕ возвращаются: отдаётся список чанков и первый чанк; конкретный чанк читается через chunk=N.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesСтраница или список страниц
chunkNoНомер чанка (0-based) для чтения части длинной статьи
max_charsNoЛимит суммарного размера ответа (для массива id)

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden and discloses the non-obvious behavior that articles over 4000 characters are not returned in full, but rather as a chunk list plus first chunk, with chunk=N to fetch further chunks. This is substantial transparency, though it omits error/not-found behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three front-loaded sentences with no redundancy. The first sentence states the core operation, the second defines id cardinality, and the third explains important long-article behavior. Dense but every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of an output schema, the description explains the key return behavior: normal pages return full text, while long articles return a chunk list and first chunk. It also covers multi-page limits. A full response envelope or error behavior is missing, but for correct invocation the description is sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the schema documents types, but the description adds meaningful semantics: id can be a filename without .md or a numeric id, arrays must contain 2-10 items, and max_chars bounds the aggregate response. This goes beyond the bare property descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the operation: fetching the full text of a help page by identifier, with concrete identifier forms (filename without .md or numeric id). It distinguishes itself from siblings like search or related by framing the lookup as identifier-based, though it does not explicitly name alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides clear invocation context: use a string for one page, an array for 2-10 pages bounded by max_chars, and chunk=N for long articles. It does not explicitly mention when not to use it or name sibling alternatives, but the conditions for using this tool are evident.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

hierarchyA

Оглавление: без section — сводка по разделам; с section — группы страниц раздела (top-level объекты) с количеством.

ParametersJSON Schema
NameRequiredDescriptionDefault
sectionNoРаздел для детализации

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the disclosure burden. It reveals the behavior change based on the section parameter and describes the output shape for both cases. It does not explicitly state read-only/no side effects, but the semantics strongly imply a read operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One compact sentence with a clear conditional structure. It front-loads the tool purpose and wastes no words on filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-optional-parameter tool with no output schema, the description gives an adequate high-level shape of the response in both modes. It still leaves the exact structure of the section summary and 'top-level objects' underspecified, so it is not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema only says section is a 'Раздел для детализации', while the description adds practical meaning: providing section changes the result to grouped top-level pages with counts. That is meaningful value beyond the parameter description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description specifies the resource (оглавление/hierarchy) and defines two distinct output modes depending on the optional section parameter. It is clear about what is returned, though it does not explicitly reference sibling tools to sharpen differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear conditional guidance: omit section for a summary, provide section for page groups with counts. However, it does not state when to use this tool over siblings such as related, search, or discover, so tool-selection guidance is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 9 tool updatesv0.10.0
    • First observedbuild
    • First observedbuild_status
    • First observedconfig_get
    • First observedconfig_set
    • First observeddiscover
    • First observedget_page
    • First observedhierarchy
    • First observedrelated
    • First observedsearch

TDQS

A3.7/5.0
Disambiguation4/5

The tools are largely distinct: search, page retrieval, related pages, hierarchy, index build/status, and config access have clear boundaries. The only mild overlap is discover vs config_get, which both surface configuration/state, but their focus on autodiscovery vs effective settings is enough to separate them.

Naming Consistency3/5

Names are readable and mostly snake_case, but the conventions are mixed: bare verbs (search, build, discover), nouns (related, hierarchy), verb_noun (get_page), and the inverted noun_verb pattern (config_get, config_set). This is inconsistent but not chaotic.

Tool Count5/5

Nine tools form a well-scoped set for a documentation/help-server: four read/retrieval operations, two index lifecycle operations, and three config/discovery operations. Each tool has a distinct job and none feel redundant.

Completeness5/5

The surface covers the full help-documentation workflow: search, page content, related links, table of contents, index rebuild with async status, and configuration discovery/update. I see no critical dead ends for agents using this server.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    An 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.
    77
    AGPL 3.0
  • F
    license
    Not graded
    quality
    B
    maintenance
    MCP 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.
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server for RAG-based search over 1C Enterprise configuration documentation, enabling natural language queries to find objects like справочники, документы, and отчеты.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server for documentation search that automatically indexes web documentation sites and provides semantic, full-text, or hybrid search capabilities.
    14
    MIT

Latest Blog Posts

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/sergeyfedyakov/v8help-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server