MCP Server

Russian court practice (Sudact): case search by article, court, dates; full decision text.

Remote serverstreamable-http

What is the MCP MCP server?

Russian court practice (Sudact): case search by article, court, dates; full decision text. That is what the mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

MCP-сервер (Model Context Protocol) для поиска по судебной практике России: полнотекстовый поиск по текстам решений — по тексту документа, статье закона, суду, инстанции и датам — и получение полного текста решения по выбранному делу.

The tools it exposes

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

  • MCP_SUDACT_TOKEN — API-ключ (заголовок X-API-Key)
  • MCP_SUDACT_API_BASE — Базовый URL бэкенда
  • MCP_SUDACT_TIMEOUT — Таймаут HTTP, сек (default 60)
  • search_cases — query, court_type, instance, norms, date_from, date_to, limit
  • get_citation — url \

What it needs from you

Configuration is passed through the environment: MCP_SUDACT_TOKEN. 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

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.

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 — MCP_SUDACT_TOKEN, MCP_SUDACT_API_BASE, MCP_SUDACT_TIMEOUT and 2 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.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • 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
MCP_SUDACT_TOKENAPI-ключ (заголовок X-API-Key)
MCP_SUDACT_API_BASEБазовый URL бэкенда
MCP_SUDACT_TIMEOUTТаймаут HTTP, сек (default 60)
search_casesquery, court_type, instance, norms, date_from, date_to, limit
get_citationurl \

How to install the MCP MCP server

{
  "mcpServers": {
    "sudact": {
      "command": "uvx",
      "args": ["atomno-mcp-sudact"],
      "env": {
        "MCP_SUDACT_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
MCP_SUDACT_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP to MCP SUDACT TOKEN.
  • Use MCP to MCP SUDACT API BASE.
  • Use MCP to MCP SUDACT TIMEOUT.

Frequently asked questions

It connects MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (MCP_SUDACT_TOKEN, MCP_SUDACT_API_BASE, MCP_SUDACT_TIMEOUT, 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.