Back to MCP Directory
Tripadvisor
Model Context Protocol low risk

Tripadvisor

Tripadvisor MCP server provides AI assistants access to location data, reviews, and photos via API, enabling travel destination and experience searches.

Connections & Capabilities

Connects To

GitHubDocker

Capabilities

read

Quickstart

Config

{
  "mcpServers": {
    "tripadvisor": {
      "command": "uv",
      "args": [
        "--directory",
        "<full path to tripadvisor-mcp directory>",
        "run",
        "src/tripadvisor_mcp/main.py"
      ],
      "env": {
        "TRIPADVISOR_API_KEY": "your_api_key_here"
      }
    }
  }
}

Exposed MCP Tools (5)

safe
search_locations

Search for locations based on a query, category, and filters.

Read-only search operation.

safe
search_nearby_locations

Find locations near specified coordinates.

Read-only search operation.

safe
get_location_details

Retrieve detailed information about a specific location.

Read-only retrieval operation.

safe
get_location_reviews

Retrieve reviews for a specific location.

Read-only retrieval operation.

safe
get_location_photos

Get photos for a specific location.

Read-only retrieval operation.

Safety Assessment

This MCP server is relatively safe due to its read-only nature and reliance on API key authentication. However, proper management of the API key is crucial to prevent unauthorized access. Ensure the API key is stored securely and consider implementing rate limiting on the client side.

  • Read-only access to Tripadvisor data.
  • API Key authentication required.
  • No direct execution or system-level access.
  • Docker containerization provides some isolation.
  • Exposure of API key if not properly managed.
  • Potential for abuse if API key is compromised.
  • Reliance on Tripadvisor's API security.
  • No built-in rate limiting within the MCP server itself.