@pullapi/tripadvisor-scraper-mcp
v1.0.0
Published
Tripadvisor MCP server — hotel search, details & guest reviews. For Claude, Cursor & AI agents.
Maintainers
Readme
Tripadvisor Scraper MCP Server
An MCP server that provides real-time Tripadvisor data — search hotels, get detailed property information, and read guest reviews — for use with Claude, Cursor, and other MCP-compatible AI tools.
Features
- Search Hotels — Search Tripadvisor for hotels by location
- Get Hotel — Get detailed hotel information from Tripadvisor
- Get Reviews — Get guest reviews for a Tripadvisor hotel
Tools
search_hotels
Search Tripadvisor for hotels by location
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| location_id | string | Yes | Tripadvisor location ID |
| page | number | No | Page number (default: 1) |
get_hotel
Get detailed hotel information from Tripadvisor
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| url | string | Yes | Tripadvisor hotel URL |
get_reviews
Get guest reviews for a Tripadvisor hotel
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| url | string | Yes | Tripadvisor hotel URL |
| page | number | No | Page number (default: 1) |
Configuration
Get your API key from RapidAPI.
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"tripadvisor": {
"command": "npx",
"args": ["-y", "@pullapi/tripadvisor-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}Usage with Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"tripadvisor": {
"command": "npx",
"args": ["-y", "@pullapi/tripadvisor-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}License
MIT
