Fake Airbnb Listing
The Fake Airbnb Listing API generates one short-term rental listing per call. Includes title, location-specific description, host note, sleeps/bedrooms/bathrooms, amenities, three eccentric quirks ("The owl considers itself a roommate"), rating, review count, and price per night.
Add to Your MCP Client
Drop this server into Claude Desktop, Cursor, Continue, or any MCP-compatible client.
{
"mcpServers": {
"fake-airbnb-listing": {
"url": "https://api.stupidmcps.com/fake-airbnb-listing/mcp"
}
}
}
{
"mcpServers": {
"fake-airbnb-listing": {
"url": "https://api.stupidmcps.com/fake-airbnb-listing/mcp"
}
}
}
POST https://api.stupidmcps.com/fake-airbnb-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
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
location |
string |
Required | — | City or area. |
Examples
curl "https://api.stupidapis.com/fake-airbnb-listing/list?location=Lisbon"
import requests
response = requests.get("https://api.stupidapis.com/fake-airbnb-listing/list", params={"location": "Lisbon"})
print(response.json())
const response = await fetch("https://api.stupidapis.com/fake-airbnb-listing/list?location=Lisbon");
const data = await response.json();
Response Schema
| Field | Type | Description |
|---|---|---|
title |
string |
Listing title |
location |
string |
Echoed back |
description |
string |
Property description |
host_note |
string |
Note from host |
sleeps |
number |
Max guests |
bedrooms |
number |
Bedroom count |
bathrooms |
number |
Bathroom count |
amenities |
string[] |
Amenities |
quirks |
string[] |
Eccentricities |
rating |
number |
Star rating |
reviews |
number |
Review count |
price_per_night |
string |
Nightly rate |
Example Response
{
"title": "Charming Studio with Heart",
"location": "Lisbon",
"description": "A welcoming home in Lisbon. South-facing. Renovated in 2019. Walking distance to a market.",
"host_note": "I have lived here for nineteen years and I am happy to share it with you, mostly.",
"sleeps": 4,
"bedrooms": 2,
"bathrooms": 1,
"amenities": [
"wifi",
"kitchen",
"self check-in",
"workspace",
"air conditioning"
],
"quirks": [
"The owl considers itself a roommate",
"Wifi is unreliable but the wifi is unreliable for everyone",
"A small ghost; nothing serious"
],
"rating": 4.92,
"reviews": 142,
"price_per_night": "$184"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidmcps.com/fake-airbnb-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.