MCPMCP Tools/Reviews/bulk_reply_reviews
bulk_reply_reviews
Writereviews:write
Post replies to many reviews in one call. Pass `replies` as an explicit array of { reviewId, text }. Each is applied independently (Google and Facebook pushed live; others saved). Rate-limited per Google Business Profile (10 edits/min); throttled items come back with retryable:true so they can be re-attempted rather than treated as hard failures. Returns a per-review result array with ok/pushed/error/retryable, plus succeeded/failed counts.
Parameters
repliesobject[]required
Array of { reviewId, text }
reviewIdstringoptional
Review id (from list_reviews).
textstringoptional
Reply text
Example request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "bulk_reply_reviews",
"arguments": {
"replies": [
{}
]
}
}
}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.