German Real Estate MCP Server
Enables AI agents to search for German property listings (rent/buy) on immowelt.de with structured JSON output, no API key required.
README
German Real Estate — MCP server
A free MCP server that gives your AI agent structured German property listings from immowelt.de. One tool, clean JSON, no API key and no proxy — it just works.
Tool
search_properties
| Param | Type | Example |
|---|---|---|
city |
string | "berlin", "munich", "hamburg", "cologne" |
transaction_type |
string | "rent" or "buy" |
property_type |
string | "apartment", "house", "plot", "commercial" |
min_price / max_price |
int (EUR) | 800 / 2000 |
min_size |
int (m²) | 60 |
min_rooms |
number | 3 |
limit |
int | 10 (free tier capped) |
Returns { "listings": [ { price_eur, price_label, size_sqm, rooms, floor, address, district, city, plz, url, image_url } ], "note": "..." }.
Quick start (no key needed)
git clone <this repo> && cd german-realestate-mcp
python3.11 -m venv venv && source venv/bin/activate
pip install -r requirements.txt
Add to your MCP client (e.g. Claude Desktop claude_desktop_config.json) — no env vars required:
{
"mcpServers": {
"german-real-estate": {
"command": "/absolute/path/german-realestate-mcp/venv/bin/python",
"args": ["/absolute/path/german-realestate-mcp/src/server.py"]
}
}
}
Then ask your agent: "Find 3-room apartments to rent in Munich under €2,000."
How it works
Scrapes immowelt.de directly with httpx + BeautifulSoup. Listing data only — realtor/agent
personal data is intentionally dropped. If a query returns nothing, the tool returns a small sample
so it never comes back empty.
Free tier & beyond
The free tier caps results (REALESTATE_FREE_LIMIT, default 10). A paid API is the next step:
more cities and sources (kleinanzeigen, price comparison), detail-page enrichment, price history,
and higher limits. The free MCP server is the front door.
Develop
pip install -r requirements-dev.txt
pytest
Legal
Returns listing data only (price/size/rooms/location) — no personal data. Use in line with immowelt's terms and applicable law.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.