mcp-fns-check
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_FNS_CACHE_DB | No | Путь к SQLite-файлу кэша карточек | ./atomno_mcp_fns_check_cache.sqlite |
| MCP_FNS_LOG_LEVEL | No | Уровень логирования (DEBUG/INFO/WARNING/ERROR) | INFO |
| MCP_FNS_USER_AGENT | No | User-Agent HTTP-клиента | atomno-mcp-fns-check/0.1 (+https://github.com/atomno-labs/mcp-fns-check) |
| MCP_FNS_HTTP_TIMEOUT | No | Таймаут HTTP, секунд | 15 |
| MCP_FNS_REGISTRIES_DB | No | Путь к SQLite-файлу реестров (массовые адреса/руководители/дисквалификации) | <cache>.registries.sqlite |
| MCP_FNS_CACHE_TTL_HOURS | No | TTL кэшированных карточек, часов | 168 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| pingA | Диагностический тул: проверяет, что сервер запущен и доступен. |
| check_contractorA | Главный тул: полная проверка контрагента по одному идентификатору. Принимает ИНН (10 цифр — юр.лицо, 12 — ИП/физлицо) или ОГРН (13 цифр — юр.лицо, 15 — ИП). Тип определяется строго по длине и контрольной цифре. |
| check_innA | Полная карточка контрагента по ИНН (10 цифр — юр.лицо, 12 — ИП). |
| check_ogrnC | Карточка контрагента по ОГРН (13 цифр) или ОГРНИП (15 цифр). |
| get_legal_statusB | Текущий жизненный статус: active / liquidating / bankruptcy / liquidated / reorganizing / excluded_inactive. Минимум один из |
| get_okvedsC | Перечень кодов ОКВЭД основной + дополнительные с расшифровкой по справочнику ОКВЭД-2. |
| get_directors_historyA | История смены руководителей и учредителей по ИНН. На стадии S3 возвращает только текущего руководителя из egrul.nalog.ru плюс предупреждение о неполноте данных. Полная история (с датами назначения/увольнения) появится на стадии S5 после загрузки Open Data slice ЕГРЮЛ. |
| check_for_red_flagsA | Агрегированный риск-чек по контрагенту (8 проверок, SPEC §3.5). Базовые 4 проверки (всегда):
Расширенные 4 проверки (
Любая внешняя проверка может вернуть ошибку (CAPTCHA, 5xx, timeout) — она
попадёт в |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool targets a distinct aspect of contractor verification: comprehensive checks by identifier, risk flags, specific identifier lookups, director history, legal status, OKVED codes, and a diagnostic ping. No overlap in purpose.
Tools follow a consistent snake_case pattern with clear verb prefixes (check_, get_, ping). Minor deviation with 'check_for_red_flags' using 'for', but overall pattern is predictable.
8 tools is well-scoped for the domain of Russian contractor verification, covering all essential operations without being excessive or too sparse.
Covers core lifecycle: identifier validation, comprehensive checks, risk assessment, director history, legal status, and OKVED codes. Minor gaps like batch operations, but the main workflows are complete.