INDIVIDUAL MCP TOOL
list_markets_tool
List every Landing market currently accepting bookings, and — nested under each — its **display cities** (the specific, neighborhood-level places the website is organized around).
LIVE ENDPOINT
https://www.hellolanding.com/mcp/public
Connect to this endpoint to inspect the live schema for list_markets_tool and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.landing_furnished_apartments]
url = "https://www.hellolanding.com/mcp/public"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"landing_furnished_apartments": {
"type": "http",
"url": "https://www.hellolanding.com/mcp/public"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: landing_furnished_apartments
Remote MCP URL: https://www.hellolanding.com/mcp/public
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"landing_furnished_apartments": {
"url": "https://www.hellolanding.com/mcp/public"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"landing_furnished_apartments": {
"type": "http",
"url": "https://www.hellolanding.com/mcp/public"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "landing_furnished_apartments",
"transport": "streamable-http",
"url": "https://www.hellolanding.com/mcp/public"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
get_market_filters_tool— Returns all available filter options for a given market — its display cities, bedroom counts, amenities, price range, bathroom options, neighborhoods, and sort orders.search_apartments_tool— Search Landing's published furnished apartments by location.search_apartments_on_map— Search Landing's published furnished apartments in a given market and render the results as an interactive map (pins), not a card grid.get_apartment_tool— Fetch a single Landing home by its slug — property details, amenities, photos, **flex pricing**, **the full availability calendar**, and a pre-filled `reservation_link` so the agent doesn't have to probe dates or assemble booking URLs by hand (get_apartment already returns the full calendar).availability_overview_tool— Full, date-agnostic availability OVERVIEW of a whole display city or market: every matching apartment together with its booking ranges (the SAME availability ranges the website's property page uses) and minimum-stay rules.get_flex_options_tool— Return the flex (open-ended) commitment tiers a given home accepts, so the agent doesn't suggest a `committed_nights` value the home will reject.get_quote_tool— Real, date-specific anonymous quote for a home.booking_intent_tool— Save the guest's interest in a home so Landing can follow up, then return a direct checkout link for them to complete the booking.