← All WebMCP sites

real-estate-map

demo
Chrome Labs real estate map demo
Run a live auditWe load the site in a real browser and score the tools it gives an agent.

Tools

search_locationanswerdeclarative
Searches for real estate properties in a given city or neighborhood by navigating to the map view.
Input schema
{
  "type": "object",
  "properties": {
    "location": {
      "type": "string",
      "description": "Enter a city like 'Seattle'"
    }
  },
  "required": [
    "location"
  ]
}
apply_smart_filtersactimperative/webmcp-tools/demos/real-estate-map/map.html
Filters the real estate properties displayed on the map and list based on criteria like location, price, property type, area, bedrooms, and specific features.
Input schema
{
  "type": "object",
  "properties": {
    "location": {
      "type": "string",
      "description": "The city to search in (e.g., 'Seattle', 'Austin', 'Miami')."
    },
    "types": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Property types to include (e.g., 'Apartment', 'House', 'Studio', 'Condominium', 'Townhouse')."
    },
    "min_price": {
      "type": "number",
      "description": "Minimum price in USD ($)."
    },
    "max_price": {
      "type": "number",
      "description": "Maximum price in USD ($)."
    },
    "min_area": {
      "type": "number",
      "description": "Minimum living area in sq ft."
    },
    "min_bedrooms": {
      "type": "number",
      "description": "Minimum number of bedrooms."
    },
    "features": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "Hardwood Floors",
          "Fireplace",
          "High Ceilings",
          "Walk-in Closets",
          "Smart Home System",
          "In-unit Washer/Dryer",
          "Dishwasher",
          "Finished Basement",
          "Home Office",
          "Newly Renovated",
          "Floor-to-Ceiling Windows",
          "Furnished",
          "Elevator",
          "Doorman",
          "Fitness Center",
          "Swimming Pool",
          "Spa & Sauna",
          "Rooftop Deck",
          "Concierge Service",
          "Co-working Space",
          "Secure Package Room",
          "Pet Friendly",
          "Bike Storage",
          "Balcony",
          "Private Terrace",
          "Fenced Yard",
          "City View",
          "Water View",
          "Central AC",
          "Solar Panels",
          "EV Charging Station",
          "Garage Parking",
          "Wheelchair Accessible"
        ]
      },
      "description": "Must-have amenities/features (e.g. 'Rooftop Deck', 'Central AC', 'Walk-in Closets')."
    }
  }
}
clear_filtersactimperative/webmcp-tools/demos/real-estate-map/map.html
Resets all filters to their default states and shows all available properties.
Input schema
{
  "type": "object",
  "properties": {}
}
view_property_detailsanswerimperative/webmcp-tools/demos/real-estate-map/map.html
Focuses the map on a specific property by ID and opens its details window.
Input schema
{
  "type": "object",
  "properties": {
    "property_id": {
      "type": "integer",
      "description": "The ID of the property to view."
    }
  },
  "required": [
    "property_id"
  ]
}
Listings are sourced from public community registries and shown as reported.