-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.ts
533 lines (485 loc) · 13.5 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
#!/usr/bin/env node
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import {
CallToolRequestSchema,
ListToolsRequestSchema,
Tool,
McpError,
ErrorCode,
} from "@modelcontextprotocol/sdk/types.js";
import fetch from "node-fetch";
import * as cheerio from "cheerio";
import { cleanObject, flattenArraysInObject, pickBySchema } from "./util.js";
import robotsParser from "robots-parser";
// Tool definitions
const AIRBNB_SEARCH_TOOL: Tool = {
name: "airbnb_search",
description: "Search for Airbnb listings with various filters and pagination. Provide direct links to the user",
inputSchema: {
type: "object",
properties: {
location: {
type: "string",
description: "Location to search for (city, state, etc.)"
},
placeId: {
type: "string",
description: "Google Maps Place ID (overrides the location parameter)"
},
checkin: {
type: "string",
description: "Check-in date (YYYY-MM-DD)"
},
checkout: {
type: "string",
description: "Check-out date (YYYY-MM-DD)"
},
adults: {
type: "number",
description: "Number of adults"
},
children: {
type: "number",
description: "Number of children"
},
infants: {
type: "number",
description: "Number of infants"
},
pets: {
type: "number",
description: "Number of pets"
},
minPrice: {
type: "number",
description: "Minimum price for the stay"
},
maxPrice: {
type: "number",
description: "Maximum price for the stay"
},
cursor: {
type: "string",
description: "Base64-encoded string used for Pagination"
},
ignoreRobotsText: {
type: "boolean",
description: "Ignore robots.txt rules for this request"
}
},
required: ["location"]
}
};
const AIRBNB_LISTING_DETAILS_TOOL: Tool = {
name: "airbnb_listing_details",
description: "Get detailed information about a specific Airbnb listing. Provide direct links to the user",
inputSchema: {
type: "object",
properties: {
id: {
type: "string",
description: "The Airbnb listing ID"
},
checkin: {
type: "string",
description: "Check-in date (YYYY-MM-DD)"
},
checkout: {
type: "string",
description: "Check-out date (YYYY-MM-DD)"
},
adults: {
type: "number",
description: "Number of adults"
},
children: {
type: "number",
description: "Number of children"
},
infants: {
type: "number",
description: "Number of infants"
},
pets: {
type: "number",
description: "Number of pets"
},
ignoreRobotsText: {
type: "boolean",
description: "Ignore robots.txt rules for this request"
}
},
required: ["id"]
}
};
const AIRBNB_TOOLS = [
AIRBNB_SEARCH_TOOL,
AIRBNB_LISTING_DETAILS_TOOL,
] as const;
// Utility functions
const USER_AGENT = "ModelContextProtocol/1.0 (Autonomous; +https://github.com/modelcontextprotocol/servers)";
const BASE_URL = "https://www.airbnb.com";
const args = process.argv.slice(2);
const IGNORE_ROBOTS_TXT = args.includes("--ignore-robots-txt");
const robotsErrorMessage = "This path is disallowed by Airbnb's robots.txt to this User-agent. You may or may not want to run the server with '--ignore-robots-txt' args"
let robotsTxtContent = "";
// Simple robots.txt fetch
async function fetchRobotsTxt() {
if (IGNORE_ROBOTS_TXT) {
return;
}
try {
const response = await fetchWithUserAgent(`${BASE_URL}/robots.txt`);
robotsTxtContent = await response.text();
} catch (error) {
console.error("Error fetching robots.txt:", error);
robotsTxtContent = ""; // Empty robots.txt means everything is allowed
}
}
function isPathAllowed(path: string) {
if (!robotsTxtContent) {
return true; // If we couldn't fetch robots.txt, assume allowed
}
const robots = robotsParser(path, robotsTxtContent);
if (!robots.isAllowed(path, USER_AGENT)) {
console.error(robotsErrorMessage);
return false;
}
return true;
}
async function fetchWithUserAgent(url: string) {
return fetch(url, {
headers: {
"User-Agent": USER_AGENT,
"Accept-Language": "en-US,en;q=0.9",
},
});
}
// API handlers
async function handleAirbnbSearch(params: any) {
const {
location,
placeId,
checkin,
checkout,
adults = 1,
children = 0,
infants = 0,
pets = 0,
minPrice,
maxPrice,
cursor,
ignoreRobotsText = false,
} = params;
// Build search URL
const searchUrl = new URL(`${BASE_URL}/s/${encodeURIComponent(location)}/homes`);
// Add placeId
if (placeId) searchUrl.searchParams.append("place_id", placeId);
// Add query parameters
if (checkin) searchUrl.searchParams.append("checkin", checkin);
if (checkout) searchUrl.searchParams.append("checkout", checkout);
// Add guests
const adults_int = parseInt(adults.toString());
const children_int = parseInt(children.toString());
const infants_int = parseInt(infants.toString());
const pets_int = parseInt(pets.toString());
const totalGuests = adults_int + children_int;
if (totalGuests > 0) {
searchUrl.searchParams.append("adults", adults_int.toString());
searchUrl.searchParams.append("children", children_int.toString());
searchUrl.searchParams.append("infants", infants_int.toString());
searchUrl.searchParams.append("pets", pets_int.toString());
}
// Add price range
if (minPrice) searchUrl.searchParams.append("price_min", minPrice.toString());
if (maxPrice) searchUrl.searchParams.append("price_max", maxPrice.toString());
// Add room type
// if (roomType) {
// const roomTypeParam = roomType.toLowerCase().replace(/\s+/g, '_');
// searchUrl.searchParams.append("room_types[]", roomTypeParam);
// }
// Add cursor for pagination
if (cursor) {
searchUrl.searchParams.append("cursor", cursor);
}
// Check if path is allowed by robots.txt
const path = searchUrl.pathname + searchUrl.search;
if (!ignoreRobotsText && !isPathAllowed(path)) {
return {
content: [{
type: "text",
text: JSON.stringify({
error: robotsErrorMessage,
url: searchUrl.toString()
}, null, 2)
}],
isError: true
};
}
const allowSearchResultSchema: Record<string, any> = {
listing : {
id: true,
name: true,
title: true,
coordinate: true,
structuredContent: {
mapCategoryInfo: {
body: true
},
mapSecondaryLine: {
body: true
},
primaryLine: {
body: true
},
secondaryLine: {
body: true
},
}
},
avgRatingA11yLabel: true,
listingParamOverrides: true,
structuredDisplayPrice: {
primaryLine: {
accessibilityLabel: true,
},
secondaryLine: {
accessibilityLabel: true,
},
explanationData: {
title: true,
priceDetails: {
items: {
description: true,
priceString: true
}
}
}
},
// contextualPictures: {
// picture: true
// }
};
try {
const response = await fetchWithUserAgent(searchUrl.toString());
const html = await response.text();
const $ = cheerio.load(html);
let staysSearchResults = {};
try {
const scriptElement = $("#data-deferred-state-0").first();
const clientData = JSON.parse($(scriptElement).text()).niobeMinimalClientData[0][1];
const results = clientData.data.presentation.staysSearch.results;
cleanObject(results);
staysSearchResults = {
searchResults: results.searchResults
.map((result: any) => flattenArraysInObject(pickBySchema(result, allowSearchResultSchema)))
.map((result: any) => { return {url: `${BASE_URL}/rooms/${result.listing.id}`, ...result }}),
paginationInfo: results.paginationInfo
}
} catch (e) {
console.error(e);
}
return {
content: [{
type: "text",
text: JSON.stringify({
searchUrl: searchUrl.toString(),
...staysSearchResults
}, null, 2)
}],
isError: false
};
} catch (error) {
return {
content: [{
type: "text",
text: JSON.stringify({
error: error instanceof Error ? error.message : String(error),
searchUrl: searchUrl.toString()
}, null, 2)
}],
isError: true
};
}
}
async function handleAirbnbListingDetails(params: any) {
const {
id,
checkin,
checkout,
adults = 1,
children = 0,
infants = 0,
pets = 0,
ignoreRobotsText = false,
} = params;
// Build listing URL
const listingUrl = new URL(`${BASE_URL}/rooms/${id}`);
// Add query parameters
if (checkin) listingUrl.searchParams.append("check_in", checkin);
if (checkout) listingUrl.searchParams.append("check_out", checkout);
// Add guests
const adults_int = parseInt(adults.toString());
const children_int = parseInt(children.toString());
const infants_int = parseInt(infants.toString());
const pets_int = parseInt(pets.toString());
const totalGuests = adults_int + children_int;
if (totalGuests > 0) {
listingUrl.searchParams.append("adults", adults_int.toString());
listingUrl.searchParams.append("children", children_int.toString());
listingUrl.searchParams.append("infants", infants_int.toString());
listingUrl.searchParams.append("pets", pets_int.toString());
}
// Check if path is allowed by robots.txt
const path = listingUrl.pathname + listingUrl.search;
if (!ignoreRobotsText && !isPathAllowed(path)) {
return {
content: [{
type: "text",
text: JSON.stringify({
error: robotsErrorMessage,
url: listingUrl.toString()
}, null, 2)
}],
isError: true
};
}
const allowSectionSchema: Record<string, any> = {
"LOCATION_DEFAULT": {
lat: true,
lng: true,
subtitle: true,
title: true
},
"POLICIES_DEFAULT": {
title: true,
houseRulesSections: {
title: true,
items : {
title: true
}
}
},
"HIGHLIGHTS_DEFAULT": {
highlights: {
title: true
}
},
"DESCRIPTION_DEFAULT": {
htmlDescription: {
htmlText: true
}
},
"AMENITIES_DEFAULT": {
title: true,
seeAllAmenitiesGroups: {
title: true,
amenities: {
title: true
}
}
},
//"AVAILABLITY_CALENDAR_DEFAULT": true,
};
try {
const response = await fetchWithUserAgent(listingUrl.toString());
const html = await response.text();
const $ = cheerio.load(html);
let details = {};
try {
const scriptElement = $("#data-deferred-state-0").first();
const clientData = JSON.parse($(scriptElement).text()).niobeMinimalClientData[0][1];
const sections = clientData.data.presentation.stayProductDetailPage.sections.sections;
sections.forEach((section: any) => cleanObject(section));
details = sections
.filter((section: any) => allowSectionSchema.hasOwnProperty(section.sectionId))
.map((section: any) => {
return {
id: section.sectionId,
...flattenArraysInObject(pickBySchema(section.section, allowSectionSchema[section.sectionId]))
}
});
} catch (e) {
console.error(e);
}
return {
content: [{
type: "text",
text: JSON.stringify({
listingUrl: listingUrl.toString(),
details: details
}, null, 2)
}],
isError: false
};
} catch (error) {
return {
content: [{
type: "text",
text: JSON.stringify({
error: error instanceof Error ? error.message : String(error),
listingUrl: listingUrl.toString()
}, null, 2)
}],
isError: true
};
}
}
// Server setup
const server = new Server(
{
name: "airbnb",
version: "0.1.0",
},
{
capabilities: {
tools: {},
},
},
);
console.error(
`Server started with options: ${IGNORE_ROBOTS_TXT ? "ignore-robots-txt" : "respect-robots-txt"}`
);
// Set up request handlers
server.setRequestHandler(ListToolsRequestSchema, async () => ({
tools: AIRBNB_TOOLS,
}));
server.setRequestHandler(CallToolRequestSchema, async (request) => {
try {
// Ensure robots.txt is loaded
if (!robotsTxtContent) {
await fetchRobotsTxt();
}
switch (request.params.name) {
case "airbnb_search": {
return await handleAirbnbSearch(request.params.arguments);
}
case "airbnb_listing_details": {
return await handleAirbnbListingDetails(request.params.arguments);
}
default:
throw new McpError(
ErrorCode.MethodNotFound,
`Unknown tool: ${request.params.name}`
);
}
} catch (error) {
return {
content: [{
type: "text",
text: `Error: ${error instanceof Error ? error.message : String(error)}`
}],
isError: true
};
}
});
async function runServer() {
const transport = new StdioServerTransport();
await server.connect(transport);
console.error("Airbnb MCP Server running on stdio");
}
runServer().catch((error) => {
console.error("Fatal error running server:", error);
process.exit(1);
});