MCPMCP Tools/Reviews/add_review_source

add_review_source

Writereviews:write

Add a custom review source (a specific review-page URL) to a location — e.g. a Yelp, TripAdvisor, Trustpilot, BBB, or other business-listing page whose reviews aren't already pulled in automatically (Google and Facebook are auto-pulled via the connected OAuth account and don't need this). Run validate_review_source on the URL first to confirm it collects reviews and isn't already added. Once added, its reviews are scraped immediately in the background and then re-checked on a recurring schedule. Fails if this exact URL is already added to this location.

Parameters
locationIdstringrequired
The location to add this review source to (required, from list_locations).
urlstringrequired
The review page URL (required).
platformstringoptional
The detected platform slug (from validate_review_source). Auto-detected from the URL if omitted.
labelstringoptional
A display label for the source. Auto-detected from the URL if omitted.
detectedNamestringoptional
The business name detected on the page (from validate_review_source), for reference.
reviewCountnumberoptional
The estimated review count detected at validation time, shown until the first scrape lands.
Example request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "add_review_source",
    "arguments": {
      "locationId": "string",
      "url": "string"
    }
  }
}
Example response
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

Response shape shown for illustration — the actual content depends on the tool and your data.