forked from mvanhorn/printing-press-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools-manifest.json
More file actions
42 lines (42 loc) · 1.27 KB
/
Copy pathtools-manifest.json
File metadata and controls
42 lines (42 loc) · 1.27 KB
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
{
"api_name": "hotelist",
"base_url": "https://hotelist.com",
"description": "Every Hotelist feature, plus a local SQLite mirror that ranks rating-per-dollar across whole countries, compares chains head-to-head, and tracks how a city's hotels change over time.",
"mcp_ready": "full",
"http_transport": "standard",
"auth": {
"type": "none"
},
"required_headers": [
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36"
},
{
"name": "X-Requested-With",
"value": "XMLHttpRequest"
},
{
"name": "Accept",
"value": "application/json, text/html, */*"
}
],
"tools": [
{
"name": "hotel_detail",
"description": "Fetch the raw detail-modal HTML for one hotel (Hotelist Score, verified amenities, AI rating breakdown). The 'show' command parses this into structured fields. Required: hotel_id.",
"method": "GET",
"path": "/modal/{hotel_id}",
"no_auth": true,
"params": [
{
"name": "hotel_id",
"type": "string",
"location": "path",
"description": "Hotelist hotel id, e.g. KYLCGAVE",
"required": true
}
]
}
]
}