Skip to main content
Glama
lonewolfmasanaga

zameen-mcp

search_properties

Search Zameen.com for sale or rent properties by city, purpose, and type, with filters for price, beds, area, verified listings, and agent tier.

Instructions

Search Zameen.com property listings and return normalized JSON cards.

Use city names like "islamabad", "lahore", "karachi". purpose: sale|rent. property_type: homes|houses|flats|plots|commercial|rooms. Badge filters (verified_only, agent_tier e.g. "titanium", exclude_promoted, max_price_pkr) apply AFTER parsing over up to 3 result pages - these can express things Zameen's own UI cannot (e.g. verified listings only). min_beds/min_area_marla/keywords/sort are native site filters. limit is clamped to 1..50 and echoed back in filters_applied. Example: search_properties(city="lahore", purpose="sale", property_type="houses", min_beds=4, verified_only=True, agent_tier="titanium", max_price_pkr=200000000).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYes
sortNo
limitNo
purposeNosale
keywordsNo
min_bedsNo
agent_tierNo
max_price_pkrNo
property_typeNohomes
verified_onlyNo
min_area_marlaNo
exclude_promotedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations provided, the description fully carries the behavioral disclosure burden. It goes beyond the schema by revealing that badge filters apply after parsing over up to 3 result pages, that limit is clamped to 1..50 and echoed back in filters_applied, and that the output is normalized JSON cards. This is strong, non-obvious behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but every sentence adds value: purpose, accepted values, filter behavior, clamping behavior, and a complete example. It is front-loaded with the core purpose and avoids filler or repetition.

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?

For a 12-parameter tool with no schema-level descriptions and no annotations, the description provides enough guidance to call it correctly, including defaults, value examples, behavioral caveats, and a realistic invocation. The output schema exists, so return structure does not need to be spelled out in the description.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate, and it does. It explains purpose and property_type values, differentiates post-parsing badge filters from native filters, clarifies limit clamping, and provides a full example covering the major parameters. Nearly every parameter receives meaningful semantic context.

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?

The description opens with a specific verb and resource: 'Search Zameen.com property listings and return normalized JSON cards.' It clearly distinguishes this from sibling tools like get_listing_details or watch management, and the parameter guidance makes the search scope unmistakable.

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?

The description gives concrete usage guidance: which city names to use, what purpose/property_type values are expected, and which filters are applied post-parsing versus native site filters. It does not explicitly name alternative tools for when not to use this one, but the context and purpose make the search use case clear.

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