@hasdata/zillow-mcp 1.0.1 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- mcp-name: com.hasdata/zillow -->
|
|
4
4
|
|
|
5
|
-
A hosted Model Context Protocol (MCP) server that gives Claude, Cursor, Windsurf and any other MCP client two read-only Zillow tools. Search for-sale, for-rent and sold listings with rich filters, and read a single property in full, all as structured JSON, with
|
|
5
|
+
A hosted Model Context Protocol (MCP) server that gives Claude, Cursor, Windsurf and any other MCP client two read-only Zillow tools. Search for-sale, for-rent and sold listings with rich filters, and read a single property in full, all as structured JSON, with nothing to host.
|
|
6
6
|
|
|
7
7
|
It reads public listing pages on Zillow.com that a signed-out visitor can see.
|
|
8
8
|
|
|
9
|
+
**1,000 free credits every month, no card required**, which is 200 Zillow calls at the base rate.
|
|
10
|
+
|
|
9
11
|
```
|
|
10
12
|
https://mcp.hasdata.com/api/mcp?apis=zillow
|
|
11
13
|
```
|
|
@@ -36,7 +38,7 @@ https://mcp.hasdata.com/api/mcp?apis=zillow
|
|
|
36
38
|
|
|
37
39
|
## What you need
|
|
38
40
|
|
|
39
|
-
An MCP client and a HasData API key from the [dashboard](https://app.hasdata.com/sign-up?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp), free to create with no card, and the trial covers about 200 calls at the 5-credit rate. This is a remote server, so the simplest path is a URL and an `x-api-key` header, with no container to run
|
|
41
|
+
An MCP client and a HasData API key from the [dashboard](https://app.hasdata.com/sign-up?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp), free to create with no card, and the trial covers about 200 calls at the 5-credit rate. This is a remote server, so the simplest path is a URL and an `x-api-key` header, with no container to run. A client that only speaks stdio reaches it through a thin launcher, published as `@hasdata/zillow-mcp` on npm and `hasdata-zillow-mcp` on PyPI, shown below.
|
|
40
42
|
|
|
41
43
|
## Quick start
|
|
42
44
|
|
|
@@ -270,11 +272,11 @@ Results that carry data also carry a `requestMetadata.id` worth quoting in suppo
|
|
|
270
272
|
|
|
271
273
|
Each Zillow tool costs **5 credits per successful call**. Turning on `extractAgentEmails` adds 5 credits to the property call, 10 instead of 5, so leave it off unless you need the email. Response size does not change the price.
|
|
272
274
|
|
|
273
|
-
The free
|
|
275
|
+
The free tier is **1,000 credits every month with no card**, which is 200 Zillow calls at the base rate. It renews with the billing cycle, so a low-volume agent runs on the free tier indefinitely.
|
|
274
276
|
|
|
275
277
|
Paid plans start at **$49 a month** for 200,000 credits, which is 40,000 calls. The unit price falls with volume, from **$1.23 per 1,000 calls** on the entry plan to **$0.50** on Business, **$0.42** on Growth and **$0.37** on the largest [high-volume plans](https://hasdata.com/prices?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp).
|
|
276
278
|
|
|
277
|
-
Your plan also sets concurrency. The free
|
|
279
|
+
Your plan also sets concurrency. The free tier allows 1 request at a time, Startup 15, Business 30, Growth 50, and the high-volume plans run from 200 to 1,500. Handle the overflow case defensively in anything unattended.
|
|
278
280
|
|
|
279
281
|
A request that comes back non-200 is not billed. A successful call that finds nothing is still a call.
|
|
280
282
|
|
|
@@ -308,7 +310,7 @@ Zillow's own API programs are for members and partners moving their own inventor
|
|
|
308
310
|
|
|
309
311
|
### Is there an official Zillow MCP server?
|
|
310
312
|
|
|
311
|
-
Zillow does not publish one. This one is maintained by HasData and reads public
|
|
313
|
+
Zillow does not publish one. This one is maintained by HasData and reads public Zillow.com pages.
|
|
312
314
|
|
|
313
315
|
### What is a Zillow MCP server?
|
|
314
316
|
|
|
@@ -316,7 +318,7 @@ A server that exposes Zillow listing data as tools an AI client can call. The cl
|
|
|
316
318
|
|
|
317
319
|
### Do I need a Zillow account or API key?
|
|
318
320
|
|
|
319
|
-
No. The only credential is your HasData key.
|
|
321
|
+
No. The only credential is your HasData key. The tools read public Zillow.com pages.
|
|
320
322
|
|
|
321
323
|
### Why does a search result not show price history or schools?
|
|
322
324
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasdata/zillow-mcp",
|
|
3
3
|
"mcpName": "com.hasdata/zillow",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"description": "MCP server for Zillow through HasData's hosted API: search for-sale, for-rent and sold listings, and read a single property in full. No Zillow account.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|