Apify Tripadvisor API MCP Server
Search hotels, restaurants, and attractions by keyword, and pull full review streams for any place found, including review text, ratings, dates, trip type, and author info.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Apify Tripadvisor API MCP ServerSearch for hotels in Paris and return the top 10"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
๐จ Tripadvisor API: hotel and restaurant reviews as clean JSON
Actor: johnvc/tripadvisor-api ยท Input schema
This repo shows two ways to use the Tripadvisor API on Apify: a Python quick start and MCP installs for five AI clients. Search hotels, restaurants and attractions by keyword, then pull the full review stream for any place you found. If you were about to scrape Tripadvisor with a headless browser, this is the same data with none of the maintenance.
Video Walkthrough

Text walkthrough
The tripadvisor api takes a search_mode of search or reviews. Search mode takes a query like hotels in paris and returns places with title, placeType, rating, reviewCount, location and a placeId. Reviews mode takes that placeId and returns the full review stream: snippet, rating, reviewDate, tripDate, tripType, votes and authorName, ten per request with automatic paging. A common workflow is exporting every review of a property to CSV for sentiment analysis, which the export_reviews recipe in this repo does end to end. There is no place-detail mode, so addresses and phone numbers are out of scope by design.
Related MCP server: Tripadvisor MCP
Quick Start
You need Python 3.11+ and a free Apify API key: sign up at apify.com, then copy your token from Console Settings.
git clone https://github.com/johnisanerd/Apify-Tripadvisor-API.git
cd Apify-Tripadvisor-API
uv sync
cp .env.example .env # then paste your APIFY_API_TOKEN
uv run python tripadvisor-api-example.pyRun a specific recipe:
uv run python tripadvisor-api-example.py --example export_reviewsWhy use this API
Search hotels, restaurants and attractions by keyword, filtered by place type
Full review text with trip type, trip date, language and helpful votes
Reviewer context: display name and how many contributions the author has made
Ten regional domains for language and currency control
Automatic paging to your max_results; pay only per row returned
Recipes
The example script ships ready-made recipes that mirror this API's main use cases:
Export a place's reviews (
--example export_reviews): Pulls the review stream for one placeId, ready for CSV or sentiment work.Build a fresh hotel dataset (
--example hotel_dataset): Searches a city and keeps only ACCOMMODATION rows, a current alternative to stale public datasets.
Schedule tip: save any of these inputs as a task in the Apify Console and attach a schedule. A daily or weekly run turns a one-off pull into a pipeline with zero manual work.
Usage Examples
Basic input:
{
"search_mode": "search",
"query": "hotels in paris",
"max_results": 5
}Advanced input:
{
"search_mode": "reviews",
"place_id": "143336",
"max_results": 50,
"tripadvisor_domain": "www.tripadvisor.co.uk"
}Input Parameters
Parameter | Type | Required | Default | Description |
| string | yes |
| What to fetch. |
| string | no | none | Required when search mode is 'search'. |
| string | no | none | Required when search mode is 'reviews'. |
| array | no | none | Optional. |
| integer | no |
| How many rows to return before stopping. |
| string | no |
| Optional. |
Output Format
One row from a real run:
{
"resultType": "review",
"placeId": "143336",
"totalReviews": 39843,
"title": "Paris in July",
"snippet": "Loved my 5 days. Close and convenient to everything.",
"rating": 5,
"reviewDate": "2026-08-03",
"tripDate": "2026-07-31",
"tripType": "FAMILY",
"votes": 0,
"authorName": "Michele W",
"authorContributions": 1
}People also search for
Is this a Tripadvisor scraper?
You can use it wherever you would use a Tripadvisor scraper, but you call it like an API: JSON in, JSON out, with paging and billing handled for you. No browser automation to maintain.
How do I get Tripadvisor reviews from Python?
Run the quick start in this repo: uv sync, set your token, and call the export_reviews recipe with a placeId. Search mode hands you the placeId for any place.
Can I get a hotel's address or phone number?
No. The place-detail source is unreliable upstream, so this API deliberately ships search and reviews only rather than a mode that fails.
Can I run it on a schedule?
Yes. Save your input as a task in the Apify Console and attach a schedule; a weekly review pull keeps a sentiment dashboard fresh without manual runs.
Install in Claude Cowork Desktop

Cowork is the desktop app's automation mode. To give it the Tripadvisor API as a tool, add the Apify MCP server as a connector.
Open the Claude desktop app and go to Settings -> Connectors (or Settings -> Developer -> Edit Config to edit
claude_desktop_config.jsondirectly).macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add the Apify MCP server, preloaded with only this Actor:
{
"mcpServers": {
"apify": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api"
]
}
}
}Restart the app. When Cowork first calls the tool, complete the OAuth prompt in your browser, or add your Apify API token in the connector settings to skip OAuth.
In a Cowork chat, confirm the tool is available and ask it to run the Tripadvisor API.
Download the desktop app and start a free trial: https://claude.ai/referral/uIlpa7nPLg More help: https://docs.apify.com/platform/integrations/claude-desktop
Install in Claude Code

Claude Code is the command-line tool. Add the Actor's MCP server with one command:
claude mcp add --transport http apify \
"https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api"To use a token instead of browser OAuth:
claude mcp add --transport http apify \
"https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api" \
--header "Authorization: Bearer YOUR_APIFY_TOKEN"Then verify with claude mcp list, or run /mcp inside a session. Ask Claude Code to call the Tripadvisor API.
Try Claude Code free: https://claude.ai/referral/uIlpa7nPLg Claude Code MCP docs: https://code.claude.com/docs/en/mcp
Install in Claude (website)

On claude.ai you add Apify as a connector, then enable just this Actor's tool.
Go to Settings -> Connectors -> Browse connectors and search for Apify MCP server. Install it (enable or update if prompted).
When connecting, authenticate with your Apify API token, and enable the tool
johnvc/tripadvisor-api.In any chat, open + -> Connectors and turn on Apify.
Alternatively, choose Add custom connector and paste the full MCP URL
https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api, using OAuth when prompted.Ask Claude to run the Tripadvisor API.
Open Claude on the web: https://claude.ai
Install in Cursor

Cursor reads MCP servers from a project file at .cursor/mcp.json.
In your project, create
.cursor/mcp.json:
{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api"
}
}
}If you prefer token auth over browser OAuth, add a header:
{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api",
"headers": { "Authorization": "Bearer YOUR_APIFY_TOKEN" }
}
}
}Open Cursor -> Settings -> MCP and confirm the apify server is connected (green dot).
In Composer or Chat, ask Cursor to call the Tripadvisor API.
New to Cursor? Get it here: https://cursor.com/referral?code=XQP4VBLI3NNX
Install in ChatGPT

ChatGPT connects to the Apify MCP server through Developer mode (available on ChatGPT Pro, Plus, Business, Enterprise, and Education plans).
Click your profile icon, then go to Settings > Apps. If you do not see a Create app button, open Advanced settings and enable Developer mode.
Click Create app and fill out the form:
Name: Apify
MCP Server URL:
https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-apiAuthentication: OAuth
Click Create and authorize the connection with Apify.
To use the app in a conversation, click + in the chat, choose Developer mode, and select Apify.
More help: https://docs.apify.com/platform/integrations/mcp
Made with care by johnvc on Apify. This example repo is part of Alpha OSINT, toolset of financial and operations data sources and APIs.
Last Updated: 2026.08.06
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceThis MCP server provides access to TripAdvisor data for planning vacations, enabling users to search for and get details about locations, attractions, restaurants, and hotels through an interactive planning experience.Last updated42Apache 2.0
- AlicenseBqualityCmaintenanceMCP server that enables LLMs to interact with Tripadvisor API, supporting location data, reviews, and photos through standardized MCP interfacesLast updated562MIT
- Flicense-qualityDmaintenanceThis server enables users to programmatically scrape and access Google Maps reviews through a Multi-Agent Conversation Protocol interface to the Apify API.Last updated
- AlicenseBqualityFmaintenanceEnables AI assistants to interact with the Apify platform to manage actors, monitor runs, and retrieve scraped data from datasets. It supports natural language commands for executing web scrapers, managing tasks, and accessing key-value stores.Last updated28MIT
Related MCP Connectors
Live Google Maps business search, review, and photo data for AI agents over MCP.
Google AI Overview answers and cited sources via the Apify Google AI Overview API, hosted MCP.
Extract data from any website with thousands of scrapers, crawlers, and automations on Apify Store โก
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/johnisanerd/Apify-Tripadvisor-API'
If you have feedback or need assistance with the MCP directory API, please join our Discord server