MCPMCP Tools/Reviews/add_client_competitor

add_client_competitor

Writereviews:write

Track a new competitor at the CLIENT level (a roll-up competitor shown across every location for that client), by business name. Distinct from add_competitor, which tracks one for a single location. Returns the created competitor profile.

Parameters
clientIdstringrequired
The client's id (from list_clients).
namestringrequired
Competitor business name
Example request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "add_client_competitor",
    "arguments": {
      "clientId": "string",
      "name": "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.