MCP Server

MCP server for Russian FSSP enforcement proceedings lookup and debtor search.

Remote serverstreamable-httpPython

What is the MCP MCP server?

Most developer tooling work still happens through a UI a human drives. MCP MCP server moves it into the conversation instead. MCP server for Russian FSSP enforcement proceedings lookup and debtor search.

The short version

MCP server for Russian FSSP enforcement proceedings lookup and debtor search.

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

The tools it exposes

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

  • Self — host энтузиасты** ставят клиент локально со своим ключом Damia/Checko и работают без зависимости от стороннего SaaS — снимает паранойю об утечке ПДн
  • api — cloud** (https://api-cloud.ru/api/fssp.php) — per-request оплата
  • v0.2 — multi-provider (+Checko, NewDB, api-cloud), check_legal_entity_debts, get_proceeding_details, локальный кэш L1
  • v0.5 — интеграция с Pro-backend (api.atomno-mcp.ru/fssp/): summarize_debts, monitor_debts_changes, кэш L2 на 30 дней, fallback по 3 провайдерам
  • Web — сервис ФССП: fssp.gov.ru/iss/ip
  • MCP — спецификация: modelcontextprotocol.io
  • ping — Проверка готовности сервера и текущего провайдера
  • MCP_FSSP_PROVIDER — Провайдер: damia / checko / newdb / api_cloud / self_parser / atomno_pro
  • MCP_FSSP_DAMIA_KEY — Ключ Damia API-ФССП
  • MCP_FSSP_CHECKO_KEY — Ключ Checko v2
  • MCP_FSSP_NEWDB_KEY — Ключ NewDB
  • MCP_FSSP_API_CLOUD_KEY — Ключ api-cloud.ru

What it needs from you

Configuration is passed through the environment: MCP_FSSP_PROVIDER, MCP_FSSP_DAMIA_KEY, ATOMNO_API_KEY, MCP_FSSP_CHECKO_KEY, MCP_FSSP_NEWDB_KEY, MCP_FSSP_API_CLOUD_KEY. 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.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MCP.
  • 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.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP's toolset — Self, api, v0.2 and 11 more — is a fair guide to whether it matches your workflow. It is maintained by atomno-mcp; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
Selfhost энтузиасты** ставят клиент локально со своим ключом Damia/Checko и работают без зависимости от стороннего SaaS — снимает паранойю об утечке ПДн.
apicloud** (https://api-cloud.ru/api/fssp.php) — per-request оплата.
v0.2multi-provider (+Checko, NewDB, api-cloud), check_legal_entity_debts, get_proceeding_details, локальный кэш L1.
v0.5интеграция с Pro-backend (api.atomno-mcp.ru/fssp/): summarize_debts, monitor_debts_changes, кэш L2 на 30 дней, fallback по 3 провайдерам.
Webсервис ФССП: [fssp.gov.ru/iss/ip](https://fssp.gov.ru/iss/ip).
MCPспецификация: [modelcontextprotocol.io](https://modelcontextprotocol.io/spec).
pingПроверка готовности сервера и текущего провайдера.
MCP_FSSP_PROVIDERПровайдер: damia / checko / newdb / api_cloud / self_parser / atomno_pro
MCP_FSSP_DAMIA_KEYКлюч Damia API-ФССП
MCP_FSSP_CHECKO_KEYКлюч Checko v2
MCP_FSSP_NEWDB_KEYКлюч NewDB
MCP_FSSP_API_CLOUD_KEYКлюч api-cloud.ru
ATOMNO_API_KEYКлюч Pro-режима (api.atomno-mcp.ru/fssp/)
ATOMNO_API_BASEURL Pro-backend

How to install the MCP MCP server

{
  "mcpServers": {
    "fssp": {
      "command": "uvx",
      "args": ["atomno-mcp-fssp"],
      "env": {
        "MCP_FSSP_PROVIDER": "your-value",
        "MCP_FSSP_DAMIA_KEY": "your-value",
        "ATOMNO_API_KEY": "your-value",
        "MCP_FSSP_CHECKO_KEY": "your-value",
        "MCP_FSSP_NEWDB_KEY": "your-value",
        "MCP_FSSP_API_CLOUD_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
MCP_FSSP_PROVIDERConfiguration value read at startup.Optional
MCP_FSSP_DAMIA_KEYCredential the server authenticates with.Yes
ATOMNO_API_KEYCredential the server authenticates with.Yes
MCP_FSSP_CHECKO_KEYCredential the server authenticates with.Yes
MCP_FSSP_NEWDB_KEYCredential the server authenticates with.Yes
MCP_FSSP_API_CLOUD_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP to Self.
  • Use MCP to api.
  • Use MCP to v0.2.

Frequently asked questions

It connects MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Self, api, v0.2, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP directly.