@hasdata/zillow-mcp 1.0.0

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +373 -0
  3. package/index.mjs +24 -0
  4. package/package.json +16 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 HasData
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,373 @@
1
+ # Zillow MCP Server
2
+
3
+ <!-- mcp-name: com.hasdata/zillow -->
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 no Zillow account and nothing to host.
6
+
7
+ It reads public listing pages on Zillow.com that a signed-out visitor can see.
8
+
9
+ ```
10
+ https://mcp.hasdata.com/api/mcp?apis=zillow
11
+ ```
12
+
13
+ [![Glama score](https://glama.ai/mcp/servers/HasData/zillow-mcp/badges/score.svg)](https://glama.ai/mcp/servers/HasData/zillow-mcp)
14
+ [![tool contract](https://github.com/HasData/zillow-mcp/actions/workflows/contract.yml/badge.svg)](https://github.com/HasData/zillow-mcp/actions/workflows/contract.yml)
15
+ [![MCP](https://img.shields.io/badge/MCP-remote%20%7C%20streamable%20HTTP-6366f1?style=flat-square)](https://modelcontextprotocol.io)
16
+ [![Tools](https://img.shields.io/badge/tools-2-10b981?style=flat-square)](#tools)
17
+ [![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](LICENSE)
18
+
19
+ ## Contents
20
+
21
+ - [What you need](#what-you-need)
22
+ - [Quick start](#quick-start)
23
+ - [Example prompts](#example-prompts)
24
+ - [Tools](#tools)
25
+ - [Errors and failure paths](#errors-and-failure-paths)
26
+ - [Pricing, free tier and limits](#pricing-free-tier-and-limits)
27
+ - [Tool selection](#tool-selection)
28
+ - [How it compares](#how-it-compares)
29
+ - [FAQ](#faq)
30
+ - [HasData links](#hasdata-links)
31
+ - [Development](#development)
32
+ - [Contributing](#contributing)
33
+ - [License](#license)
34
+
35
+ ## What you need
36
+
37
+ 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 and no Zillow account anywhere in the flow. 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.
38
+
39
+ ## Quick start
40
+
41
+ The server URL is the same for every client. We run it hands-on in Claude Code and Claude Desktop. The other blocks follow each client's own documented format for a remote server.
42
+
43
+ | Field | Value |
44
+ | :--- | :--- |
45
+ | URL | `https://mcp.hasdata.com/api/mcp?apis=zillow` |
46
+ | Transport | HTTP, streamable |
47
+ | Auth header | `x-api-key: HASDATA_API_KEY` |
48
+
49
+ Clients with OAuth support can add the same URL as a connector and sign in without putting a key in a config file.
50
+
51
+ <details>
52
+ <summary><b>Claude Code</b></summary>
53
+
54
+ ```bash
55
+ claude mcp add --transport http zillow "https://mcp.hasdata.com/api/mcp?apis=zillow" \
56
+ --header "x-api-key: HASDATA_API_KEY"
57
+ ```
58
+
59
+ </details>
60
+
61
+ <details>
62
+ <summary><b>Claude Desktop</b></summary>
63
+
64
+ Settings, then Connectors, then Add custom connector, then paste `https://mcp.hasdata.com/api/mcp?apis=zillow` and sign in.
65
+
66
+ For the config-file route, Claude Desktop loads only local (stdio) servers, so it reaches a remote server through a stdio launcher. The `@hasdata/zillow-mcp` package is that launcher, and it reads the key from the environment. Add this to `claude_desktop_config.json`:
67
+
68
+ ```json
69
+ {
70
+ "mcpServers": {
71
+ "zillow": {
72
+ "command": "npx",
73
+ "args": ["-y", "@hasdata/zillow-mcp"],
74
+ "env": { "HASDATA_API_KEY": "YOUR_KEY" }
75
+ }
76
+ }
77
+ }
78
+ ```
79
+
80
+ For Python instead of Node, swap the launcher for the PyPI package, which `uvx` runs without a manual install:
81
+
82
+ ```json
83
+ {
84
+ "mcpServers": {
85
+ "zillow": {
86
+ "command": "uvx",
87
+ "args": ["hasdata-zillow-mcp"],
88
+ "env": { "HASDATA_API_KEY": "YOUR_KEY" }
89
+ }
90
+ }
91
+ }
92
+ ```
93
+
94
+ </details>
95
+
96
+ <details>
97
+ <summary><b>Cursor</b></summary>
98
+
99
+ `~/.cursor/mcp.json` for every project, or `.cursor/mcp.json` for one:
100
+
101
+ ```json
102
+ {
103
+ "mcpServers": {
104
+ "zillow": {
105
+ "url": "https://mcp.hasdata.com/api/mcp?apis=zillow",
106
+ "headers": { "x-api-key": "HASDATA_API_KEY" }
107
+ }
108
+ }
109
+ }
110
+ ```
111
+
112
+ </details>
113
+
114
+ <details>
115
+ <summary><b>Windsurf</b></summary>
116
+
117
+ `~/.codeium/windsurf/mcp_config.json`. Windsurf calls the field `serverUrl`, not `url`:
118
+
119
+ ```json
120
+ {
121
+ "mcpServers": {
122
+ "zillow": {
123
+ "serverUrl": "https://mcp.hasdata.com/api/mcp?apis=zillow",
124
+ "headers": { "x-api-key": "HASDATA_API_KEY" }
125
+ }
126
+ }
127
+ }
128
+ ```
129
+
130
+ </details>
131
+
132
+ <details>
133
+ <summary><b>VS Code</b></summary>
134
+
135
+ `.vscode/mcp.json` in the workspace:
136
+
137
+ ```json
138
+ {
139
+ "servers": {
140
+ "zillow": {
141
+ "type": "http",
142
+ "url": "https://mcp.hasdata.com/api/mcp?apis=zillow",
143
+ "headers": { "x-api-key": "HASDATA_API_KEY" }
144
+ }
145
+ }
146
+ }
147
+ ```
148
+
149
+ </details>
150
+
151
+ ## Example prompts
152
+
153
+ Prompts, not code. Paste one in and the agent picks the tool itself. Each is annotated with the calls it takes, because every successful call costs 5 credits.
154
+
155
+ > Search for-sale homes in Austin, TX with at least three beds under $600k, sorted newest first, and give me the ten most recent with price and days on market.
156
+
157
+ *One call, 5 credits. Price, beds, area and days on market come back on the search result.*
158
+
159
+ > Take the top result and pull its full detail: price history, tax history, the price estimate, and the assigned schools.
160
+
161
+ *One call, 5 credits. Those live on the property page, which the details tool reads by URL.*
162
+
163
+ > Find for-rent condos in Austin that allow cats, then pull the rental estimate on the three cheapest.
164
+
165
+ *Four calls, 20 credits. One search, then one property call for each of the three.*
166
+
167
+ > For this property URL, give me the list price, the price estimate, and the last three sales in its price history.
168
+
169
+ *One call, 5 credits.*
170
+
171
+ A search result is enough to rank and shortlist. Price history, tax history, the estimate, schools and the agent come from the property call, so a prompt that shortlists then inspects three homes is one search plus three property calls.
172
+
173
+ ## Tools
174
+
175
+ Two tools, read-only. Samples below are trimmed from real calls, and the numbers move as the market moves. Read them as shapes. Each tool name links to its endpoint reference, which carries the full field list.
176
+
177
+ The samples are the payload, not the whole response. A `tools/call` result carries one text block, and that text is itself JSON holding `url`, `status`, `text` and `json`, with the scraped data under `json`. From a raw JSON-RPC response the path is `result.content[0].text`, parsed, then `.json`. A chat client unwraps that for you and code talking to the endpoint directly does not.
178
+
179
+ ### Get Zillow real estate listings
180
+
181
+ [`hasdata_zillow_listing_getRealEstateListings`](https://docs.hasdata.com/apis/zillow/listing?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp)
182
+
183
+ A page of listings by location keyword, filtered.
184
+
185
+ | Parameter | Type | Required | Notes |
186
+ | :--- | :--- | :--- | :--- |
187
+ | `keyword` | string | yes | The location to search, such as `Austin, TX` |
188
+ | `type` | string | yes | `forSale`, `forRent` or `sold` |
189
+ | `price_min_` / `price_max_` | number | | Price band |
190
+ | `beds_min_` / `beds_max_` / `baths_min_` / `baths_max_` | number | | Bed and bath bands |
191
+ | `homeTypes__` | array | | `house`, `condo`, `townhome`, `multiFamily`, `apartment`, `lot`, `manufactured` |
192
+ | `daysOnZillow` | number/string | | `1`, `7`, `14`, `30`, `90`, `6m`, `12m` and up |
193
+ | `sort` | string | | `newest`, `priceLowToHigh`, `priceHighToLow`, `squareFeet` and more |
194
+ | `page` | number | | Result page |
195
+
196
+ The reference also documents square-footage, lot-size, year-built and HOA bands, plus `otherAmenities__`, `views__`, `pets__`, `listingType`, `propertyStatus__`, `listingPublishOptions__` and more.
197
+
198
+ Returns `searchInformation` with `totalResults`, a `properties` array, and `pagination` whose `nextPage` is the URL of the following page. Each property carries `id`, `url`, `homeType`, `status`, `price`, `currency`, a `rentZestimate` rental estimate, `daysOnZillow`, `area` in square feet, `addressRaw` and a structured `address`, `latitude`, `longitude`, `beds`, `baths`, `listingDetails`, `mediaDetails` and `photos`.
199
+
200
+ ```json
201
+ {
202
+ "id": "60134551",
203
+ "url": "https://www.zillow.com/homedetails/6116-Speyside-Dr-Austin-TX-78754/60134551_zpid/",
204
+ "homeType": "SINGLE_FAMILY",
205
+ "status": "FOR_SALE",
206
+ "price": 320000,
207
+ "currency": "$",
208
+ "rentZestimate": 2286,
209
+ "daysOnZillow": 0,
210
+ "area": 2277,
211
+ "address": { "street": "6116 Speyside Dr", "city": "Austin", "state": "TX", "zipcode": "78754" },
212
+ "beds": 4,
213
+ "baths": 3
214
+ }
215
+ ```
216
+
217
+ ### Get Zillow property details
218
+
219
+ [`hasdata_zillow_property_getPropertyDetails`](https://docs.hasdata.com/apis/zillow/property?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp)
220
+
221
+ One property in full, by its URL.
222
+
223
+ | Parameter | Type | Required | Notes |
224
+ | :--- | :--- | :--- | :--- |
225
+ | `url` | string | yes | A Zillow property URL, the `url` field from a listing result |
226
+ | `extractAgentEmails` | boolean | | Attempt to pull the listing agent's email. Adds 5 credits, so the property call costs 10 instead of 5 |
227
+
228
+ Returns the full page: `price`, `currency`, `fees`, `beds`, `baths`, `area`, `yearBuilt`, `homeType`, `mlsId`, a structured `address` and `geo`, the `description` and `highlights`, `photos`, `schools`, `daysOnZillow`, `views`, `saves`, an `agentInfo` block, and `priceHistory`, `taxHistory` and `mortgage` arrays. Zillow's own price estimate arrives in a `zestimate` object holding `zestimate`, an `estimatedSaleRange` and a `rentZestimate`. Read it as an estimate, not as a confirmed value.
229
+
230
+ > `area` is an object here, `{ livingArea, livingAreaUnits }`, not the flat number the search tool returns. Read `area.livingArea` for the square footage on a property page, or a numeric comparison like `area > 2000` silently fails against an object.
231
+
232
+ ```json
233
+ {
234
+ "id": 60134551,
235
+ "status": "FOR_SALE",
236
+ "price": 320000,
237
+ "currency": "USD",
238
+ "yearBuilt": 2002,
239
+ "beds": 4,
240
+ "baths": 3,
241
+ "area": { "livingArea": 2277, "livingAreaUnits": "Square Feet" },
242
+ "fees": { "monthlyHoaFee": "$500 annually" },
243
+ "zestimate": { "zestimate": 318100, "estimatedSaleRange": "$302K - $334K", "rentZestimate": 2286 },
244
+ "address": { "street": "6116 Speyside Dr", "county": "Travis County" },
245
+ "agentInfo": { "agentName": "Marie Coleman", "brokerName": "eXp Realty" },
246
+ "priceHistory": [{ "date": "2026-08-24", "price": 320000, "event": "listedForSale" }],
247
+ "schools": { "elementarySchool": { "name": "Bluebonnet Trail", "district": "Manor ISD" } }
248
+ }
249
+ ```
250
+
251
+ ## Errors and failure paths
252
+
253
+ Your client almost never sees an HTTP error code from a tool call. The MCP layer answers 200 and puts the failure inside the result, with `isError` set to `true` and the reason as text. The agent reads a message where you might expect a status line.
254
+
255
+ **A wrong key surfaces as tool output, not as a failed connection.** `tools/list` accepts any non-empty key and returns both tools, so the client completes its handshake and shows green. The first tool call then comes back with `isError: true` and the text `HasData API error: 401 Unauthorized`. Watch for that string, because nothing earlier in the flow reports the problem.
256
+
257
+ **A missing key is the one real HTTP error.** Authorization runs before any tool, and the connection itself fails with 401. CORS headers are present, and a browser client reads the status and not an opaque network failure.
258
+
259
+ **An argument that breaks a tool's schema is rejected before it becomes a scrape.** The server answers with `isError: true` and the text `MCP error -32602: Input validation error`, naming the offending field. Nothing is fetched and nothing is charged.
260
+
261
+ **A search with no matches returns a successful result with an empty `properties` array**, not an error. A location and filter set with no inventory still comes back with `requestMetadata.status` set to `ok`. Test for the array length before you iterate.
262
+
263
+ **A property that has been delisted returns 400** with `requestMetadata.status` set to `error`. A URL from an old search can point at a listing that is gone.
264
+
265
+ Results that carry data also carry a `requestMetadata.id` worth quoting in support.
266
+
267
+ ## Pricing, free tier and limits
268
+
269
+ 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.
270
+
271
+ The free trial is **1,000 credits over 30 days with no card**, which is 200 Zillow calls at the base rate. After that an active account keeps getting 100 credits topped up each day whenever its balance drops below 100, so a low-volume agent runs on the free tier indefinitely.
272
+
273
+ 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).
274
+
275
+ Your plan also sets concurrency. The free trial 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.
276
+
277
+ A request that comes back non-200 is not billed. A successful call that finds nothing is still a call.
278
+
279
+ ## Tool selection
280
+
281
+ The `apis` query parameter decides which tools your agent sees. Fewer tools means less context spent on tool definitions, and fewer chances for the model to reach for the wrong one.
282
+
283
+ ```
284
+ ?apis=zillow the two tools in this repo
285
+ ?apis=zillow,redfin add Redfin real estate
286
+ ?apis=zillow,google_maps add Google Maps places
287
+ ```
288
+
289
+ The parameter takes provider names like `zillow` and individual API names like `zillow_listing`. Misspelled names are ignored. If every name is wrong the request fails with 400, and the body lists both what it did not recognise and every valid value. Drop the parameter and the same endpoint exposes all 57 HasData tools.
290
+
291
+ ## How it compares
292
+
293
+ Zillow's own API programs are for members and partners moving their own inventory, such as the Bridge Interactive and Mortgage APIs, not a self-serve way to read the public market. For searching listings and reading arbitrary properties, scraping the public pages is the route, and this server does that behind a stable schema.
294
+
295
+ | | Zillow partner APIs | This server |
296
+ | :--- | :--- | :--- |
297
+ | Purpose | Move your own or MLS inventory | Read the public market |
298
+ | Access | Membership or partner approval | One key and one URL |
299
+ | Search across the market | Restricted | Yes, with rich filters |
300
+ | Setup | Business onboarding | None |
301
+ | Output | Partner feeds | Structured JSON, price and beds pre-parsed |
302
+
303
+ **What this server does not do.** No posting, no lead submission, no account data. It reads what a signed-out visitor can see on Zillow.com.
304
+
305
+ ## FAQ
306
+
307
+ ### Is there an official Zillow MCP server?
308
+
309
+ Zillow does not publish one. This one is maintained by HasData and reads public pages, which is why it needs no Zillow account.
310
+
311
+ ### What is a Zillow MCP server?
312
+
313
+ A server that exposes Zillow listing data as tools an AI client can call. The client sends a tool call over the Model Context Protocol, the server fetches the data and returns structured JSON, and the model works with the result. This one exposes two tools and runs remotely.
314
+
315
+ ### Do I need a Zillow account or API key?
316
+
317
+ No. The only credential is your HasData key. There is no Zillow membership to apply for, because the tools read public Zillow.com pages.
318
+
319
+ ### Why does a search result not show price history or schools?
320
+
321
+ Because Zillow does not put them on the search card. They live on the property page, which the details tool reads by URL. Search to shortlist, then call the property tool for depth.
322
+
323
+ ### What does the price estimate mean?
324
+
325
+ The `zestimate` object holds Zillow's own estimated value, a range around it, and a rental estimate. It is a model output, not an appraisal or a confirmed sale price. Treat it as an estimate.
326
+
327
+ ### Can I use this together with other HasData APIs?
328
+
329
+ Yes. The `apis` parameter takes a list, and `?apis=zillow,redfin` gives your agent Zillow plus Redfin. [Drop the parameter](#tool-selection) and you get everything.
330
+
331
+ ### Is HasData affiliated with Zillow?
332
+
333
+ No. HasData is an independent service and is not affiliated with, endorsed by, or sponsored by Zillow Group, Inc. Zillow is a trademark of its respective owner.
334
+
335
+ ### Compliance and personal data
336
+
337
+ HasData accesses publicly available data only. A platform's terms may restrict automated access, and you are responsible for your own compliance. Where the data you collect includes personal information, such as a listing agent's contact details, make sure you have a lawful basis for it under GDPR, CCPA or the equivalent rules in your jurisdiction.
338
+
339
+ ## HasData links
340
+
341
+ | | |
342
+ | :--- | :--- |
343
+ | Product page and request builder | [Zillow Scraper API](https://hasdata.com/apis/zillow-api?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp) |
344
+ | Server documentation | [MCP server docs](https://docs.hasdata.com/mcp-server?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp) |
345
+ | All 57 tools in one server | [HasData/hasdata-mcp](https://github.com/HasData/hasdata-mcp) |
346
+ | Client walkthroughs | [MCP clients and integrations](https://hasdata.com/integrations/mcp?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp) |
347
+ | Everything else we scrape | [Zillow Scraper API and 54 more](https://hasdata.com/apis/?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp) |
348
+ | Plans and credit costs | [Plans and credit costs](https://hasdata.com/prices?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp) |
349
+ | Keys and usage | [HasData dashboard](https://app.hasdata.com?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp) |
350
+
351
+ ## Development
352
+
353
+ This repository is configuration and documentation for a remote server. There is no build step and nothing to containerize.
354
+
355
+ The tests in `test/` assert the tool contract, the part that can break without a commit here. They check that `?apis=zillow` returns exactly two tools, that every tool still declares its required parameters, that no name changed, and that the key in use is actually accepted. That last check calls a tool for real and costs 5 credits, which is the price of a canary that can fail for the right reason.
356
+
357
+ ```bash
358
+ # macOS and Linux
359
+ HASDATA_API_KEY=your_key_here npm test
360
+
361
+ # Windows PowerShell
362
+ $env:HASDATA_API_KEY="your_key_here"; npm test
363
+ ```
364
+
365
+ The same suite runs in CI on every push and once a week on a schedule, because the upstream tool list can change without anyone touching this repository. A failure means the tool list moved, the key stopped working, or the endpoint was unreachable, and the assertion message says which.
366
+
367
+ ## Contributing
368
+
369
+ Corrections to the tool tables and the response samples are the most useful contribution, because those are the parts that drift. Include the call you made and the response you got. Pull requests from forks run the suite without a key, and the live checks skip instead of going red.
370
+
371
+ ## License
372
+
373
+ MIT. See [LICENSE](LICENSE).
package/index.mjs ADDED
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env node
2
+ // Thin launcher: connects an MCP client to HasData's hosted Zillow MCP server
3
+ // (streamable HTTP) through the mcp-remote stdio bridge. The server runs remotely.
4
+ // This package only proxies, so nothing here scrapes anything.
5
+ import { spawn } from 'node:child_process';
6
+ import { createRequire } from 'node:module';
7
+ import { dirname, join } from 'node:path';
8
+
9
+ const URL = 'https://mcp.hasdata.com/api/mcp?apis=zillow';
10
+ const key = process.env.HASDATA_API_KEY;
11
+ if (!key) {
12
+ process.stderr.write('HASDATA_API_KEY is not set. Create a free key at https://app.hasdata.com and set HASDATA_API_KEY.\n');
13
+ process.exit(1);
14
+ }
15
+ // Resolve mcp-remote's CLI from its own package.json bin, so a future layout change
16
+ // or an exports map does not break a hardcoded deep path.
17
+ const require = createRequire(import.meta.url);
18
+ const pkg = require('mcp-remote/package.json');
19
+ const proxy = join(dirname(require.resolve('mcp-remote/package.json')), pkg.bin['mcp-remote']);
20
+ const child = spawn(process.execPath, [proxy, URL, '--header', `x-api-key:${key}`], { stdio: 'inherit' });
21
+ child.on('exit', (code, signal) => {
22
+ if (signal) process.kill(process.pid, signal);
23
+ else process.exit(code ?? 0);
24
+ });
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@hasdata/zillow-mcp",
3
+ "mcpName": "com.hasdata/zillow",
4
+ "version": "1.0.0",
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
+ "type": "module",
7
+ "bin": { "hasdata-zillow-mcp": "index.mjs" },
8
+ "files": ["index.mjs", "README.md", "LICENSE"],
9
+ "scripts": { "test": "node --test" },
10
+ "dependencies": { "mcp-remote": "^0.1.43" },
11
+ "engines": { "node": ">=18" },
12
+ "license": "MIT",
13
+ "repository": { "type": "git", "url": "https://github.com/HasData/zillow-mcp.git" },
14
+ "homepage": "https://hasdata.com/apis/zillow-api",
15
+ "keywords": ["mcp", "zillow", "zillow-mcp", "real-estate", "property", "model-context-protocol", "hasdata", "scraper"]
16
+ }