{
  "info": {
    "name": "TripAdvisor Content API — mcp.ai",
    "description": "REST API for the TripAdvisor Content API MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/tripadvisor_content_api",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "tripadvisor_content_api_get_location_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/location/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "location",
            "details"
          ]
        },
        "description": "Tool to get comprehensive information about a location (hotel, restaurant, or attraction) including name, address, rating, and contact details. Use when you need detailed information about a specific ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"currency\": \"\",\n  \"language\": \"\",\n  \"location_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tripadvisor_content_api_get_location_photos_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/location/photos/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "location",
            "photos",
            "v2"
          ]
        },
        "description": "Tool to retrieve up to 5 high-quality photos for a specific location with complete metadata and pagination support. Use when you need detailed photo information including user details, source filterin",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"source\": \"\",\n  \"language\": \"\",\n  \"locationId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tripadvisor_content_api_get_location_reviews",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/location/reviews",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "location",
            "reviews"
          ]
        },
        "description": "Tool to retrieve up to 5 of the most recent reviews for a specific location. Use when you need customer feedback, ratings, or review content for a TripAdvisor location.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"language\": \"\",\n  \"locationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tripadvisor_content_api_search_locations2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/locations2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "locations2"
          ]
        },
        "description": "Tool to search for TripAdvisor locations with advanced filtering options. Use when you need to find locations by name, category, phone, address, or coordinates with radius-based filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"phone\": \"\",\n  \"radius\": 0,\n  \"address\": \"\",\n  \"latLong\": \"\",\n  \"category\": \"\",\n  \"language\": \"\",\n  \"radiusUnit\": \"\",\n  \"searchQuery\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tripadvisor_content_api_search_nearby_locations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/nearby/locations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "nearby",
            "locations"
          ]
        },
        "description": "Tool to search for locations near a specified latitude/longitude. Returns up to 10 locations with optional filtering by category, phone, or address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"phone\": \"\",\n  \"radius\": \"\",\n  \"address\": \"\",\n  \"latLong\": \"\",\n  \"category\": \"\",\n  \"language\": \"\",\n  \"radiusUnit\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}