MCPFerramentas MCP/Avaliações/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.

Parâmetros
locationIdstringobrigatório
The location to add this review source to (required, from list_locations).
urlstringobrigatório
The review page URL (required).
platformstringopcional
The detected platform slug (from validate_review_source). Auto-detected from the URL if omitted.
labelstringopcional
A display label for the source. Auto-detected from the URL if omitted.
detectedNamestringopcional
The business name detected on the page (from validate_review_source), for reference.
reviewCountnumberopcional
The estimated review count detected at validation time, shown until the first scrape lands.
Exemplo de solicitação
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "add_review_source",
    "arguments": {
      "locationId": "string",
      "url": "string"
    }
  }
}
Exemplo de resposta
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

O formato da resposta é ilustrativo — o conteúdo real depende da ferramenta e dos seus dados.