loading…
Search for a command to run...
loading…
search for best places to rent
Get a fully functional rental AI agent in 30 seconds.
# 1. Install
pip install -r requirements.txt
# 2. Run
python3 server.py
# 3. Add to Claude Desktop (see configuration below)
# Done. Your AI can now search listings, analyze neighborhoods,
# check affordability, compare options, review leases, and more.
That's it. No API keys. No database setup. No Docker required (though we support it). Just Python and an internet connection.
Prerequisites: Python 3.10+,
pip, and an internet connection for location & listing data.
Rental Agent packs 8 purpose-built tools covering the entire rental workflow — from finding a place to signing the lease.
| # | Tool | Description |
|---|---|---|
| 🔍 | rental_search_listings |
Search for current rental listings in any city with price, bedroom, and result filters |
| 🏘️ | rental_neighborhood_report |
Get a comprehensive neighborhood report: amenities, transit stops, parks, schools, and hospitals within 1km |
| 💰 | rental_affordability |
Calculate how much rent you can afford using the 30% rule or 50/30/20 budget framework |
| ⚖️ | rental_compare |
Compare multiple listings side-by-side with auto-generated scores (0–100) |
| 👥 | rental_roommate_calculator |
Split rent fairly — equal split, by room size, by income, or a combined method |
| 📜 | rental_lease_analyzer |
Analyze lease text for key terms, hidden fees, and red flags (late fees, pet policies, eviction clauses) |
| 🚗 | rental_commute_analysis |
Estimate drive/transit time and monthly commuting costs between two locations |
| 📈 | rental_market_trends |
Get rental market context, estimated affordability, and city-level income benchmarks |
Why these tools? Each one solves a concrete problem renters face. Combined, they form an end-to-end rental assistant that would normally require 5+ different websites and a spreadsheet.
┌──────────────────────────────────────────────────────────────────────┐
│ YOUR AI AGENT │
│ (Claude Desktop, Cursor, VS Code, Copilot, etc.) │
└────────────────────────────┬─────────────────────────────────────────┘
│
▼
┌──────────────────────────────────────────────────────────────────────┐
│ Model Context Protocol (MCP) │
│ StdIO Transport │
└────────────────────────────┬─────────────────────────────────────────┘
│
▼
┌──────────────────────────────────────────────────────────────────────┐
│ RENTAL AGENT MCP │
│ │
│ ┌─────────────┐ ┌──────────────┐ ┌─────────────┐ ┌───────────┐ │
│ │ Search │ │ Neighborhood │ │ Afford- │ │ Compare │ │
│ │ Listings │ │ Report │ │ ability │ │ Listings │ │
│ └──────┬──────┘ └──────┬───────┘ └──────┬──────┘ └─────┬─────┘ │
│ │ │ │ │ │
│ ┌──────┴──────┐ ┌──────┴───────┐ ┌──────┴──────┐ ┌─────┴─────┐ │
│ │ Roommate │ │ Lease │ │ Commute │ │ Market │ │
│ │ Calculator │ │ Analyzer │ │ Analysis │ │ Trends │ │
│ └──────┬──────┘ └──────┬───────┘ └──────┬──────┘ └─────┬─────┘ │
│ │ │ │ │ │
└─────────┼────────────────┼─────────────────┼───────────────┼───────┘
│ │ │ │
▼ ▼ ▼ ▼
┌──────────────────────────────────────────────────────────────────────┐
│ DATA SOURCES │
│ │
│ ┌────────────────┐ ┌────────────────┐ ┌──────────────────────┐ │
│ │ OpenStreetMap │ │ Nominatim │ │ DuckDuckGo │ │
│ │ (Overpass API) │ │ (Geocoding) │ │ (Web Search) │ │
│ │ Amenities, │ │ Lat/Lon from │ │ Rental listings, │ │
│ │ transit, parks │ │ place names │ │ market data │ │
│ └────────────────┘ └────────────────┘ └──────────────────────┘ │
│ │
│ ┌──────────────────────────────────────────────────────────────┐ │
│ │ Built-in Calculations Engine │ │
│ │ Affordability math │ Rent splitting │ Commute estimation │ │
│ │ Comparison scoring │ Lease text analysis │ Market insights │ │
│ └──────────────────────────────────────────────────────────────┘ │
└──────────────────────────────────────────────────────────────────────┘
Zero external dependencies for data. All sources are free, open, and require no API keys. The calculation engine is built into the server itself.
Search listings, compare options with scores, and check neighborhood walkability — all in one conversation.
"Find me 2-bedroom apartments in Austin TX under $2,000, compare the top 3, and tell me about the neighborhoods."
Moving to a new city? Get neighborhood reports, commute estimates, and market trends before you visit.
"I'm moving to Seattle for a job in South Lake Union. What neighborhoods are within a 30-minute commute and what's the average 1-bedroom rent?"
Know exactly what you can afford before you start looking. No surprises.
"I make $72,000 a year with $400 in monthly student loans. What rent can I afford using the 50/30/20 rule?"
Fair rent splitting prevents arguments. Choose equal, by-room-size, by-income, or a hybrid.
"Split $3,200 rent between Alice (150 sqft, $50k income), Bob (120 sqft, $60k), and Carol (130 sqft, $45k) using the combined method."
Catch red flags, hidden fees, and unfavorable terms before you sign.
"Here's my lease agreement. Can you analyze it for late fees, pet policy, subleasing restrictions, and maintenance obligations?"
Compare neighborhoods by commute time and cost. The 45-minute threshold can save you thousands.
"Compare commute times from Downtown Austin vs Mueller vs East Austin to my office at 78701."
git clone https://github.com/Rumblingb/rental-agent-mcp.git
cd rental-agent-mcp
pip install -r requirements.txt
python3 server.py
git clone https://github.com/Rumblingb/rental-agent-mcp.git
cd rental-agent-mcp
uv pip install -r requirements.txt
python3 server.py
docker run -it --rm \
-v $(pwd):/app \
-w /app \
python:3.11-slim \
bash -c "pip install -r requirements.txt && python3 server.py"
git clone https://github.com/Rumblingb/rental-agent-mcp.git
cd rental-agent-mcp
python3 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install mcp httpx
python3 server.py
One-click deployment to Smithery's cloud infrastructure. No local setup required.
None required. Rental Agent works out of the box with zero configuration.
| Variable | Required | Default | Description |
|---|---|---|---|
| — | ❌ | — | No env vars needed. Truly plug-and-play. |
claude_desktop_config.json:{
"mcpServers": {
"rental-agent": {
"command": "python3",
"args": ["/path/to/rental-agent-mcp/server.py"]
}
}
}
For Continue extension in VS Code, add to your ~/.continue/config.json:
{
"experimental": {
"mcpServers": {
"rental-agent": {
"command": "python3",
"args": ["/path/to/rental-agent-mcp/server.py"]
}
}
}
}
For Cline extension, configure in Cline settings → MCP Servers:
{
"mcpServers": {
"rental-agent": {
"command": "python3",
"args": ["/path/to/rental-agent-mcp/server.py"]
}
}
}
rental-agentcommandpython3 /path/to/rental-agent-mcp/server.pyrental_search_listingsSearch for current rental listings in any city using web search aggregation.
Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
location |
string | ✅ | — | City, state, or neighborhood (e.g. "Austin TX", "Brooklyn NY") |
min_price |
integer | ❌ | — | Minimum monthly rent filter |
max_price |
integer | ❌ | — | Maximum monthly rent filter |
bedrooms |
integer | ❌ | — | Number of bedrooms filter |
max_results |
integer | ❌ | 5 |
Maximum number of results to return |
Example:
{
"location": "Austin TX",
"max_price": 2000,
"bedrooms": 2,
"max_results": 3
}
rental_neighborhood_reportGet a comprehensive neighborhood report powered by OpenStreetMap data.
Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
location |
string | ✅ | — | Neighborhood or city (e.g. "Williamsburg Brooklyn", "Downtown Austin") |
Returns: Restaurants, cafes, bars, supermarkets, gyms, parks, pharmacies, libraries counts within ~1km, plus transit stops, schools, and hospitals.
Example:
{
"location": "Williamsburg Brooklyn"
}
Sample output:
{
"neighborhood": "Williamsburg, Brooklyn, Kings County, New York, 11211, USA",
"walkability": {
"restaurants": 34,
"cafes": 12,
"bars": 18,
"supermarkets": 4,
"gyms": 3,
"pharmacies": 2
},
"transit": { "transit_stops_nearby": 9 },
"schools_nearby": 5,
"walkability_note": "Higher amenity counts = more walkable. 5+ restaurants + cafes in 1km = very walkable."
}
rental_affordabilityCalculate how much rent you can afford based on your income and expenses.
Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
annual_income |
number | ✅ | — | Annual pre-tax income in USD |
monthly_debt |
number | ❌ | 0 |
Monthly debt payments (loans, credit cards) |
rule |
string | ❌ | "30_percent" |
Budget rule: "30_percent" or "50_30_20" |
Budget Rules:
Example:
{
"annual_income": 75000,
"monthly_debt": 300,
"rule": "30_percent"
}
rental_compareCompare multiple rental options side-by-side with auto-generated scores (0–100).
Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
listings_json |
string | ✅ | — | JSON array of listings with name, price, bedrooms, sqft, neighborhood |
Listing format:
{
"listings_json": "[{\"name\":\"Modern Downtown Studio\",\"price\":1800,\"bedrooms\":1,\"sqft\":650,\"neighborhood\":\"Downtown\"},{\"name\":\"East Side 2BR\",\"price\":2200,\"bedrooms\":2,\"sqft\":950,\"neighborhood\":\"East Austin\"},{\"name\":\"North Campus Studio\",\"price\":1200,\"bedrooms\":1,\"sqft\":500,\"neighborhood\":\"North Campus\"}]"
}
Scoring logic: Lower price = better score, more bedrooms = bonus, higher sqft = bonus, low $/sqft = bonus. Scores range 0–100.
rental_roommate_calculatorSplit rent fairly among roommates using one of four methods.
Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
total_rent |
number | ✅ | — | Total monthly rent |
roommates_json |
string | ✅ | — | JSON array of roommates with name, room_size_sqft, income |
method |
string | ❌ | "by_room" |
Method: "equal", "by_room", "by_income", or "combined" |
Methods:
| Method | Description |
|---|---|
equal |
Everyone pays the same amount |
by_room |
Split proportional to each person's room square footage |
by_income |
Split proportional to each person's income (progressive) |
combined |
50% by room size + 50% by income (fairest for most situations) |
Example:
{
"total_rent": 3200,
"roommates_json": "[{\"name\":\"Alice\",\"room_size_sqft\":150,\"income\":50000},{\"name\":\"Bob\",\"room_size_sqft\":120,\"income\":60000},{\"name\":\"Carol\",\"room_size_sqft\":130,\"income\":45000}]",
"method": "combined"
}
rental_lease_analyzerAnalyze lease text for key terms, hidden fees, and red flags.
Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
lease_text |
string | ✅ | — | Full text of the lease agreement |
What it detects:
| Category | Checks |
|---|---|
| Terms | Monthly rent amount, lease duration, security deposit |
| Fees | Late payment fees, pet fees/deposits |
| Red Flags | No subleasing, guest restrictions, eviction clauses, short inspection notice |
| Key Clauses | Utilities, parking, maintenance, renewal, termination |
⚠️ Disclaimer: This tool provides informational analysis only and does not constitute legal advice. Always consult a lawyer for important lease decisions.
rental_commute_analysisEstimate commute time and monthly cost between two locations.
Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
from_location |
string | ✅ | — | Your rental location or neighborhood |
to_location |
string | ✅ | — | Your workplace or destination |
commute_days_per_month |
integer | ❌ | 20 |
Days you commute per month |
What it calculates:
Example:
{
"from_location": "Mueller Austin",
"to_location": "Downtown Austin",
"commute_days_per_month": 22
}
rental_market_trendsGet rental market context and price trends for any city.
Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
city |
string | ✅ | — | City name (e.g. "Austin, TX", "Seattle, WA") |
Returns: Web search results for average rental prices, plus estimated affordability based on median income benchmarks for major US cities (NYC, SF, LA, Chicago, Austin, Seattle, Boston, Denver, Miami, Portland, Nashville, Atlanta, Phoenix, Dallas, Houston).
Example:
{
"city": "Denver, CO"
}
Rental Agent uses three free, open data sources — no API keys needed, ever.
What we use it for: Neighborhood amenities, transit stops, parks, schools, hospitals. Why it's free: OSM is the Wikipedia of maps — a global community of mappers contributing open geographic data. Reliability: Used by Apple Maps, Amazon, Meta, and thousands of other organizations. Updated continuously. Rate limits: Generous — suitable for hundreds of queries per day. No account needed: Public API, anonymous access.
What we use it for: Converting place names ("Williamsburg Brooklyn") to precise latitude/longitude coordinates. Why it's free: Operated by the OSM Foundation as a public service. Reliability: Powers geocoding for millions of applications worldwide. Usage policy: 1 request per second recommended (we use async with automatic spacing).
What we use it for: Searching for current rental listings and market trend data. Why it's free: DuckDuckGo provides a public API for non-commercial use. Reliability: Returns structured results from Wikipedia, Wikidata, and DuckDuckGo's index. No rate limiting: Generous access with no API key required.
All financial calculations (affordability, rent splitting, commute costs, comparison scoring, lease analysis) run locally on the server — no external API calls needed.
| Feature | Free | Pro |
|---|---|---|
| Price | $0 | $19/mo |
| Daily queries | 50/day | Unlimited |
| All 8 tools | ✅ | ✅ |
| All data sources | ✅ | ✅ |
| Zero API keys | ✅ | ✅ |
| Neighborhood reports | ✅ | ✅ |
| Lease analysis | ✅ | ✅ |
| Commute analysis | ✅ | ✅ |
| Market trends | ✅ | ✅ |
| Roommate calculator | ✅ | ✅ |
| Priority support | ❌ | ✅ |
| Early access to new tools | ❌ | ✅ |
Get Pro: Subscribe Now
The free tier handles 50 queries/day — enough for casual apartment hunting. The Pro tier removes all limits for power users, real estate professionals, and teams.
You can also use Rental Agent as a standalone REST API server. This is useful if you want to integrate rental intelligence into your own application without the MCP protocol.
from server import rental_search_listings, rental_neighborhood_report
import asyncio
async def main():
# Search listings
listings = await rental_search_listings(
location="Austin TX",
max_price=2000,
bedrooms=2
)
print(listings)
# Get neighborhood report
report = await rental_neighborhood_report(
location="Downtown Austin"
)
print(report)
asyncio.run(main())
from fastapi import FastAPI
from server import rental_search_listings, rental_neighborhood_report
import asyncio
app = FastAPI()
@app.get("/search")
async def search(location: str, max_price: int = None, bedrooms: int = None):
result = await rental_search_listings(
location=location,
max_price=max_price,
bedrooms=bedrooms
)
return result
@app.get("/neighborhood")
async def neighborhood(location: str):
result = await rental_neighborhood_report(location=location)
return result
All 8 tools are async Python functions that accept the same parameters and return JSON strings — ready to be wrapped in any web framework.
We welcome contributions from the community! Here's how to get started:
git clone https://github.com/Rumblingb/rental-agent-mcp.git
cd rental-agent-mcp
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python3 server.pyMIT License — see LICENSE for details.
MIT License
Copyright (c) 2025 Rumblingb
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions...
🏠 Rental Agent — AI-native rental intelligence for the MCP ecosystem.
Built with ❤️ by Rumblingb
GitHub
·
Pricing
·
Smithery
·
Quick Start
·
Contributing
Zero API keys. Infinite possibilities.
Выполни в терминале:
claude mcp add rental-ops-mcp -- npx