MCP server for Russian Rosreestr cadastral data: lookup by number, address or coordinates.
MCP-сервер Росреестра: объект по кадастровому номеру, адресу или координатам, кадастровая стоимость с историей. Только открытые сведения, без данных о собственниках.
Russian cadastral data for AI agents.
Открытые данные Росреестра через НСПД (Национальная система пространственных данных, nspd.gov.ru); Публичная кадастровая карта — запасной источник.
Часть семейства MCP-серверов atomno (atomno-mcp.ru). Открытый MIT — никакой PII собственников, только публичные характеристики объекта.
| Тул | Что делает |
|---|---|
lookup_by_cadastral | По кадастровому номеру (например, 77:01:0001066:1234) возвращает площадь, год постройки, кадастровую стоимость, ВРИ (вид разрешённого использования), адрес. |
lookup_by_address | По свободному тексту адреса возвращает список найденных объектов с их КН (кадастровыми номерами) и confidence score. |
lookup_by_coords | По геокоординатам (lat/lon в WGS84) показывает все объекты в этой точке (земельные участки, здания, помещения). |
get_cadastral_value | Текущая кадастровая стоимость + локально кэшированная история переоценок. |
# Через uvx (рекомендуется — без установки)
uvx atomno-mcp-rosreestr
# Или через pipx
pipx install atomno-mcp-rosreestr
mcp-rosreestr
Добавьте в ~/.cursor/mcp.json:
{
"mcpServers": {
"rosreestr": {
"command": "uvx",
"args": ["atomno-mcp-rosreestr"]
}
}
}
%APPDATA%/Claude/claude_desktop_config.json (Windows) или ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"rosreestr": {
"command": "uvx",
"args": ["atomno-mcp-rosreestr"]
}
}
}
atomno-mcp-rosreestr --help # usage
atomno-mcp-rosreestr --version # 0.1.0
atomno-mcp-rosreestr --check-config # кэш + upstream NSPD/PKK
atomno-mcp-rosreestr --transport http --port 8000 # сетевой транспорт
atomno-mcp-rosreestr --check-config
Выведет состояние локального кэша и доступность upstream-сервисов (NSPD, PKK).
Canonical-имена — с префиксом MCP_ROSREESTR_. Legacy ROSREESTR_* поддерживаются с DeprecationWarning.
| Переменная | Описание | Default |
|---|---|---|
MCP_ROSREESTR_HTTP_TIMEOUT | HTTP-таймаут для upstream-запросов (секунды) | 15.0 |
MCP_ROSREESTR_CACHE_PATH | Путь к локальной SQLite-базе с кэшем | ./mcp_rosreestr_cache.sqlite |
MCP_ROSREESTR_CACHE_TTL_LIVE | TTL «живых» данных (стоимость) в секундах | 86400 (24 ч) |
MCP_ROSREESTR_CACHE_TTL_STATIC | TTL «статичных» данных (площадь, год) в секундах | 604800 (7 дней) |
MCP_ROSREESTR_USER_AGENT | Кастомный User-Agent для upstream | atomno-mcp-rosreestr/<version> ... |
MCP_ROSREESTR_LOG_LEVEL | Уровень логирования (DEBUG…CRITICAL) | INFO |
MCP_ROSREESTR_API_KEY | Pro-фичи (не требуется для open client) | — |
nspd.gov.ru) — основной источник, актуальный геопортал Росреестра.pkk5.rosreestr.ru) — fallback (legacy), используется только если НСПД не отвечает или объект не найден.API оба недокументированные и могут меняться. Клиент написан defensively: при изменении формы ответа поля деградируют до None, а не падают.
git clone https://github.com/atomno-mcp/mcp-rosreestr
cd mcp-rosreestr
pip install -e ".[dev]"
pytest -v
nspd.gov.ru) или Публичной кадастровой картой (ПКК). Независимый open-source клиент к публичным API.MIT © Atomno
Source-derived launch command. Check the maintainer’s required arguments and credentials before running:
uvx atomno-mcp-rosreestrMerge this template into ~/Library/Application Support/Claude/claude_desktop_config.json. Keep existing servers. Add any arguments, credentials, and permissions required by the maintainer; this template has not been install-tested.
{
"mcpServers": {
"io-github-atomno-mcp-mcp-rosreestr": {
"command": "uvx",
"args": [
"atomno-mcp-rosreestr"
]
}
}
}Restart Claude Desktop completely for changes to take effect. Confirm the server appears connected in the client’s tool list, then try a read-only example from its documentation.
Claude Desktop setup referencemcp-rosreestr works with any MCP-compatible client. Copy the config snippet from the Configuration section above and add it to the file shown for your client, then restart the application.
~/Library/Application Support/Claude/claude_desktop_config.jsonRestart Claude Desktop completely for changes to take effect.~/.cursor/mcp.jsonRestart Cursor for changes to take effect..vscode/mcp.jsonReload VS Code window for changes to take effect.~/.codeium/windsurf/mcp_config.jsonRestart Windsurf for changes to take effect..mcp.jsonSave at the project root, then start Claude Code in that project and review the MCP server approval prompt. Keep real credentials out of shared files.