Skip to main content
Glama

Cian Offer Card

cian_card
Read-onlyIdempotent

Fetch a Cian real estate offer to get its price, price history, layout, building details, address, metro access, description, and publisher information.

Instructions

Read one Cian offer: price and its history, layout, building, address, metro, description, publisher.

Return Format

CianCardResponse: {status, offer_id, title, deal_type, category, price_rub, price_unit, price_period, lease_term, deposit_rub, rooms, areas, floor, floors_total, build_year, building_material, ceiling_height_m, address, metro[], description, photos, created_at, updated_at, views, price_history[], agent, url, tier_used, _meta}. price_rub is None when not stated — never 0.

Error Format

ToolError: BadRequestError when no offer id can be extracted; NotFoundError when Cian says the offer is gone; TransportDownError on a WAF block or CDP failure; ParserDriftError when the page no longer embeds the offer state.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
offer_id_or_urlYesCian offer id (digits) or a full cian.ru offer URL.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNo
_metaNo
agentNo
floorNo
metroNo
roomsNo
titleNo
viewsNo
photosNo
statusNo
addressNo
categoryNo
offer_idNo
deal_typeNo
flat_typeNo
price_rubNo
tier_usedNo
build_yearNo
created_atNo
lease_termNo
price_unitNo
updated_atNo
agency_nameNo
deposit_rubNo
descriptionNo
seller_typeNo
floors_totalNo
price_periodNo
is_apartmentsNo
price_historyNo
total_area_m2No
living_area_m2No
is_by_homeownerNo
kitchen_area_m2No
ceiling_height_mNo
newbuilding_nameNo
building_materialNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.2.0

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, openWorld and non-destructive, so the safety profile is covered. The description adds genuinely useful behavior beyond that: a full failure taxonomy (BadRequestError, NotFoundError, TransportDownError on WAF/CDP, ParserDriftError) and the semantic rule that price_rub is None rather than 0 when unstated.

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?

Front-loaded purpose sentence followed by clearly sectioned Return Format and Error Format blocks; every line carries information. The exhaustive field enumeration leans long relative to the existing output schema, which is the only mild redundancy.

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

Completeness4/5

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

With an output schema present, annotations covering safety, and full parameter coverage, the description is close to self-sufficient: it explains the payload, the null-vs-zero price rule, and the failure modes. The only gap is absent guidance on tool selection relative to cian_search.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% and the single parameter is documented in the schema as 'Cian offer id (digits) or a full cian.ru offer URL.' The description only echoes this indirectly via the BadRequest error case, so it adds little beyond the schema — baseline 3 applies.

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 — 'Read one Cian offer' — and enumerates the payload (price history, layout, building, address, metro, publisher). The word 'one' scopes it to a single-offer lookup, which distinguishes it from the sibling cian_search without needing to be spelled out.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Use case is implied by 'Read one offer' plus the required offer_id_or_url parameter. However, there is no explicit when-to-use statement, no mention of when to prefer cian_search, and no note about prerequisites (e.g. needing an ID from a prior search).

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