Fake Property Listing

⚡ Generators 🌭🌭 Medium 3,075 calls

The Fake Property Listing API generates one real estate listing per call. Includes headline, beds/baths/sqft, year built, list price, description, four highlights, one quirk ("Studio. South-facing. Haunted."), neighborhood note, status, and listing agent.

Add to Your MCP Client

Drop this server into Claude Desktop, Cursor, Continue, or any MCP-compatible client.

{
  "mcpServers": {
    "fake-property-listing": {
      "url": "https://api.stupidmcps.com/fake-property-listing/mcp"
    }
  }
}
{
  "mcpServers": {
    "fake-property-listing": {
      "url": "https://api.stupidmcps.com/fake-property-listing/mcp"
    }
  }
}
POST https://api.stupidmcps.com/fake-property-listing/mcp

Add the snippet to your client's MCP config (typically claude_desktop_config.json for Claude Desktop, ~/.cursor/mcp.json for Cursor). Restart the client. The tools become available to your AI assistant.

No-code option: connect via Pipeworx — one click into Claude, ChatGPT, and friends.

Or Try It Directly — No MCP Client Required

Fake Property Listing.exe
_ ×
Property address.

Parameters

Parameter Type Required Default Description
address string Required Property address.

Examples

curl "https://api.stupidapis.com/fake-property-listing/listing?address=42+Maple+Ave"
import requests

response = requests.get("https://api.stupidapis.com/fake-property-listing/listing", params={"address": "42 Maple Ave"})
print(response.json())
const response = await fetch("https://api.stupidapis.com/fake-property-listing/listing?address=42+Maple+Ave");
const data = await response.json();

Response Schema

Field Type Description
address string Echoed back
headline string Headline
beds number Bedroom count
baths number Bathroom count
square_feet number Square footage
year_built number Year built
list_price string List price
description string Listing description
highlights string[] Four highlights
quirk string One quirk
neighborhood string Neighborhood note
status string active / pending / come back later
agent string Listing agent

Example Response

{
  "address": "42 Maple Ave",
  "headline": "Charming starter home with character",
  "beds": 3,
  "baths": 2,
  "square_feet": 1620,
  "year_built": 1947,
  "list_price": "$614,000",
  "description": "3 bed, 2 bath at 42 Maple Ave. Move-in ready (with one exception). Inspections welcomed.",
  "highlights": [
    "Original hardwood throughout (mostly).",
    "South-facing.",
    "Quiet street; the neighbors are quieter.",
    "Bathroom: recently retiled. Patina: original."
  ],
  "quirk": "Studio. South-facing. Haunted.",
  "neighborhood": "Walking distance to one cafe, one pharmacy, one neighbor everyone knows.",
  "status": "active",
  "agent": "Marisol Crane, Realtor"
}

MCP Access

This API is available as an MCP tool for AI assistants. Connect your agent to:

POST https://api.stupidmcps.com/fake-property-listing/mcp
POST https://api.stupidmcps.com/mcp

Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.

...
Clippy