MCPMCP Tools/Reviews/reply_to_review

reply_to_review

Writereviews:write

Post (or update) the owner reply to a single review, keyed by reviewId (get it from list_reviews). Google and Facebook replies are pushed live to the publisher via the API (respondable reviews; Facebook posts as a Page comment on the recommendation's open_graph_story); replies on other platforms are saved but not pushed. Calling again with new text EDITS the reply (Google stores exactly one owner reply per review — the re-post overwrites it; Facebook edits the existing Page comment rather than posting a duplicate). A Google reply can enter a `pending` or `rejected` moderation state after posting; it reconciles on the next sync. Returns { pushed } — whether it reached the publisher. IN A CLIENT-PORTAL SESSION this saves an unsent DRAFT instead and never reaches the publisher, matching what the portal UI does — `pushed` is false and the agency sends it. Say the reply is drafted for their agency to send, never that it is live.

Parameters
reviewIdstringrequired
Review id (from list_reviews) Accepts the database ID or public rev- ID. IDs must belong to the authenticated agency and permitted client.
textstringrequired
Reply text
Example request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "reply_to_review",
    "arguments": {
      "reviewId": "string",
      "text": "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.