Skip to main content
Glama

Cian Real-Estate Search

cian_search
Read-onlyIdempotent

Search Cian property offers by price, area, rooms, and region for sale, long-term rent, or daily rent. Read price_unit to distinguish per month from per night.

Instructions

Search Cian offers by filters (there is no free-text search).

Long-term rent (deal='rent') and daily rent (deal='daily') are two separate markets: one page never mixes them, and their prices are not comparable — a daily offer is priced per night. price_unit on every item says which it is.

Return Format

CianSearchResponse: {status, deal, offer_type, region, page, tier_used, count, total_count, items[], _meta}. Each item carries offer_id, title, price_rub (None when Cian shows no price — never 0), price_unit ('total' / 'month' / 'day'), rooms, areas, floor, address, nearest metro, url, agency and publication data.

Error Format

ToolError: BadRequestError on malformed arguments (region not digits, room code outside 1-6/7/9, min above max, deal='daily' with offer_type='commercial'); TransportDownError when Cian's WAF blocks the browser session or CDP is down (with the fix inline); ParserDriftError when a 200 body is not the expected envelope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dealYes'sale' (купить), 'rent' (снять на длительный срок) or 'daily' (снять посуточно). 'rent' and 'daily' are separate markets on Cian and never mix in one result page; a 'daily' price is per night, a 'rent' price per month — read price_unit on each item.
pageNoResult page (1-based), 28 offers per page.
roomsNoFlats only: room counts to include, any of 1..6; 7 = свободная планировка, 9 = студия. Omit for any number of rooms. Ignored for room/house/commercial.
regionNoCian region id, digits only: 1 = Москва, 2 = Санкт-Петербург, 4593 = Московская область, 4588 = Ленинградская область. Other regions need their Cian id. Default CIAN_REGION (1).
area_maxNoMaximum total area in m².
area_minNoMinimum total area in m².
price_maxNoMaximum price in rubles: total for sale, per month for rent, per night for daily.
price_minNoMinimum price in rubles: total for sale, per month for rent, per night for daily.
offer_typeNoProperty type: 'flat' (квартира), 'room' (комната), 'house' (дом/участок), 'commercial'. 'commercial' has no daily market on Cian and is rejected with deal='daily'.flat

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dealNo
pageNo
_metaNo
countNo
itemsNo
regionNo
statusNo
tier_usedNo
offer_typeNo
total_countNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.2.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint/idempotentHint/destructiveHint=false, so the safety profile is covered. The description adds real value beyond them: it enumerates concrete error classes (BadRequestError for region/room/min-max/deal-offer_type combos, TransportDownError with an inline fix, ParserDriftError) and documents data conventions (price_rub is None when Cian shows no price, never 0). It stops short of auth or rate-limit 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?

The '## Return Format' and '## Error Format' headings front-load the important operational facts, and the opening sentence is efficient. The Return Format block partially restates the output schema and swaps between English prose and Russian glosses, which adds some length without adding routing value.

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

Completeness5/5

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

The definition covers purpose, the deal-market constraint, validation failures, transport/parser failures, and item-level fields, and an output schema exists to carry return detail. An agent has everything needed to select filters and interpret results without opening another tool.

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 schema already explains each parameter (enums, defaults, units, ranges). The description adds meaning on top by defining the price_unit semantics and the market separation rule that governs how deal and price_min/price_max must be interpreted together, which the schema alone does not tie together.

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?

States a specific verb and resource ('Search Cian offers by filters') and immediately clarifies the negative constraint ('there is no free-text search'), which distinguishes it from free-text siblings like yandex_search. The deal/offer_type framing makes the scope of the search 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?

Gives clear when-to-use context by explaining that 'rent' and 'daily' are separate markets that never mix in one page and whose prices are not comparable, plus the rule that commercial is rejected with deal='daily'. It does not, however, name or point to alternatives such as cian_card for fetching a single offer, so it stops short of explicit alternative routing.

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