# Israel Real Estate MCP Server (`swerve/israel-real-estate-mcp`) Actor

MCP server exposing Israeli real estate data: live listings (Yad2, Madlan, Facebook groups), official sold transactions, price per sqm and valuations.

- **URL**: https://apify.com/swerve/israel-real-estate-mcp.md
- **Developed by:** [Swerve](https://apify.com/swerve) (community)
- **Categories:** MCP servers, Real estate
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $20.00 / 1,000 tool calls

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Israel Real Estate MCP Server

An MCP (Model Context Protocol) server that gives AI assistants live Israeli real estate data: current rent and sale listings, official sold transactions, price per square metre, and a comps-based valuation. Connect it to Claude, ChatGPT, Cursor or any MCP client and ask questions like "what do 4-room apartments sell for on Ahuza street in Raanana?".

### Tools

| Tool | What it returns | Source |
|---|---|---|
| `search_listings` | Up to 50 live listings for rent or sale in a city, filtered by price, rooms and property type: price, rooms, sqm, floor, address, source URL. | Yad2 and Madlan, fetched live by our `yad2-scraper` and `madlan-scraper` actors |
| `sold_comps` | Official recorded sale transactions around an address or street (radius up to 1,000 m, up to 36 months back), with price, rooms, sqm, price per sqm, floor and distance. | Israel Tax Authority data via GovMap |
| `price_per_sqm` | Median, 25th and 75th percentile price per sqm for a city or neighborhood over the last 12 months, plus the trend against the previous 12 months. | Israel Tax Authority data via GovMap |
| `estimate_value` | Low / mid / high valuation in NIS for an apartment given city, street, rooms and sqm (house number and floor optional), with the comps used. | Israel Tax Authority data via GovMap |
| `list_cities` | The 130+ supported cities with Hebrew and English names. | Built in |

Cities can be given in Hebrew or English. Prices are in NIS.

### Connect

Streamable HTTP endpoint (Standby mode):

```
https://swerve--israel-real-estate-mcp.apify.actor/mcp
Authorization: Bearer <your Apify API token>
```

Claude Desktop / Cursor example:

```json
{
  "mcpServers": {
    "israel-real-estate": {
      "url": "https://swerve--israel-real-estate-mcp.apify.actor/mcp",
      "headers": { "Authorization": "Bearer YOUR_APIFY_TOKEN" }
    }
  }
}
```

You can also run a single tool from the Apify Console or API by setting `tool` and `args` in the Actor input; the result lands in the run's dataset.

### Pricing

Pay per event: one `tool-call` event per tool invocation. `search_listings` additionally runs the Yad2 and Madlan actors under your account, so their per-listing prices apply to those runs. Platform usage (compute, proxy) is billed to your account as with any Actor.

### Notes and limits

- Sold-transaction tools take 30 to 90 seconds: they query GovMap live for every building in the radius (a 300 m radius is the sweet spot; larger radii may return partial results with a note). Listing searches take 20 to 60 seconds because they scrape Yad2 and Madlan live for you.
- Sold data covers residential deals only; land, commercial and agricultural transactions are filtered out.
- Valuations are indicative comps math (median price per sqm of similar nearby sales, with small floor adjustments), not an appraisal.

# Actor input Schema

## `tool` (type: `string`):

One of: search\_listings, sold\_comps, price\_per\_sqm, estimate\_value, list\_cities. Leave empty to only print connection instructions.

## `args` (type: `object`):

JSON object with the arguments for the selected tool, e.g. {"city": "Tel Aviv", "dealType": "rent", "limit": 10}.

## Actor input object example

```json
{
  "args": {
    "city": "Tel Aviv",
    "dealType": "rent",
    "limit": 10
  }
}
```

# Actor output Schema

## `result` (type: `string`):

The single tool call's result (JSON).

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "args": {
        "city": "Tel Aviv",
        "dealType": "rent",
        "limit": 10
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("swerve/israel-real-estate-mcp").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "args": {
        "city": "Tel Aviv",
        "dealType": "rent",
        "limit": 10,
    } }

# Run the Actor and wait for it to finish
run = client.actor("swerve/israel-real-estate-mcp").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "args": {
    "city": "Tel Aviv",
    "dealType": "rent",
    "limit": 10
  }
}' |
apify call swerve/israel-real-estate-mcp --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,swerve/israel-real-estate-mcp"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/2IrBUdGetdARlb4qc/builds/a3iodbVEc7tmhfP6f/openapi.json
