Skip to main content
Glama

Zillow MCP — Property Data, Zestimates & Listings for AI Agents

Look up a U.S. property by address

lookup_property_by_address

Returns full Zillow property data (price, Zestimate, photos, schools, taxes, agent contact, price history) for a given U.S. address. Costs 3 credits on the Zillapi account.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressYesFull street address with city, state, and ZIP. Example: '1600 Pennsylvania Ave NW, Washington DC 20500'.

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It discloses the cost (3 credits) and the return contents, which is useful. However, it does not mention what happens for invalid/non-existent addresses, potential null results, rate limits, or other operational caveats. The transparency is partial.

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 two sentences, front-loaded with the core function ('Returns full Zillow property data...') and includes a useful cost note. Every word is purposeful with no redundancy or fluff.

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?

Given there is no output schema, the description compensates by listing the major data types returned (price, Zestimate, photos, schools, taxes, agent contact, price history) and the cost. It lacks details on error handling or not-found scenarios, but for a simple single-param lookup, this is a fairly complete description.

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?

The schema has full coverage of the single parameter 'address' with a detailed description and example. The description adds the 'U.S.' qualifier but little else beyond the schema. Baseline 3 is appropriate since the schema carries the semantic load.

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 clearly states the tool returns full Zillow property data for a U.S. address, listing specific data types (price, Zestimate, photos, schools, taxes, agent contact, price history). It distinguishes from siblings like lookup_property_by_zpid (by ID) and get_zestimate (only Zestimate) by focusing on address-based lookup.

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?

The description implies usage when a U.S. address is available, but it does not explicitly compare to alternatives or state when not to use it. The mention of 'Costs 3 credits' is operational, not usage guidance. No clear when/when-not guidance is provided.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation4/5

Each tool has a clear primary purpose: get_zestimate is for quick valuations, the two lookup tools return full property data, and search_listings is for finding listings by area. However, get_zestimate overlaps slightly with lookup_property_by_zpid since the latter includes Zestimate data, but the descriptions make the distinction clear.

Naming Consistency4/5

All tool names follow a snake_case verb_noun pattern, with verbs like get, lookup, and search. The use of 'get' for one tool and 'lookup' for two others is a minor inconsistency, but the pattern is still predictable and readable.

Tool Count5/5

With only 4 tools, the server is tightly scoped to property data retrieval and listing search. Each tool serves a distinct need, and the count is well below the upper threshold, making the set easy to navigate.

Completeness5/5

The server covers the core read-only workflows for property data: searching listings, retrieving full details by address or ZPID, and obtaining estimates. No significant gaps are apparent for a property-information-focused MCP.