@hasdata/zillow-mcp 1.0.0 → 1.0.1

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 (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +32 -8
package/README.md CHANGED
@@ -14,6 +14,8 @@ https://mcp.hasdata.com/api/mcp?apis=zillow
14
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
15
  [![MCP](https://img.shields.io/badge/MCP-remote%20%7C%20streamable%20HTTP-6366f1?style=flat-square)](https://modelcontextprotocol.io)
16
16
  [![Tools](https://img.shields.io/badge/tools-2-10b981?style=flat-square)](#tools)
17
+ [![npm](https://img.shields.io/npm/v/@hasdata/zillow-mcp?style=flat-square&logo=npm&label=npm&color=cb3837)](https://www.npmjs.com/package/@hasdata/zillow-mcp)
18
+ [![PyPI](https://img.shields.io/pypi/v/hasdata-zillow-mcp?style=flat-square&logo=pypi&logoColor=white&label=PyPI&color=3775a9)](https://pypi.org/project/hasdata-zillow-mcp/)
17
19
  [![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](LICENSE)
18
20
 
19
21
  ## Contents
@@ -347,6 +349,8 @@ HasData accesses publicly available data only. A platform's terms may restrict a
347
349
  | 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
350
  | Plans and credit costs | [Plans and credit costs](https://hasdata.com/prices?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp) |
349
351
  | Keys and usage | [HasData dashboard](https://app.hasdata.com?utm_source=github&utm_medium=syndication&utm_campaign=zillow-mcp) |
352
+ | Node launcher on npm | [@hasdata/zillow-mcp](https://www.npmjs.com/package/@hasdata/zillow-mcp) |
353
+ | Python launcher on PyPI | [hasdata-zillow-mcp](https://pypi.org/project/hasdata-zillow-mcp/) |
350
354
 
351
355
  ## Development
352
356
 
package/package.json CHANGED
@@ -1,16 +1,40 @@
1
1
  {
2
2
  "name": "@hasdata/zillow-mcp",
3
3
  "mcpName": "com.hasdata/zillow",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
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
- "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" },
7
+ "bin": {
8
+ "hasdata-zillow-mcp": "index.mjs"
9
+ },
10
+ "files": [
11
+ "index.mjs",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "test": "node --test"
17
+ },
18
+ "dependencies": {
19
+ "mcp-remote": "^0.1.43"
20
+ },
21
+ "engines": {
22
+ "node": ">=18"
23
+ },
12
24
  "license": "MIT",
13
- "repository": { "type": "git", "url": "https://github.com/HasData/zillow-mcp.git" },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/HasData/zillow-mcp.git"
28
+ },
14
29
  "homepage": "https://hasdata.com/apis/zillow-api",
15
- "keywords": ["mcp", "zillow", "zillow-mcp", "real-estate", "property", "model-context-protocol", "hasdata", "scraper"]
30
+ "keywords": [
31
+ "mcp",
32
+ "zillow",
33
+ "zillow-mcp",
34
+ "real-estate",
35
+ "property",
36
+ "model-context-protocol",
37
+ "hasdata",
38
+ "scraper"
39
+ ]
16
40
  }