MCPFerramentas MCP/Clientes/trigger_google_fetch
trigger_google_fetch
Writeclients:write
Start fetching the locations under a connected Google account so they become browsable/importable. This runs in the background; poll list_google_accounts and watch the account's fetchStatus and available count, then call get_google_listings. Starts (or restarts) the background fetch and returns once it's queued. You don't pass an agency — it comes from your credentials.
Parâmetros
clientIdstringobrigatório
The client that owns the Google account (from list_clients).
connectionIdstringobrigatório
The Google account to fetch (from list_google_accounts).
Exemplo de solicitação
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "trigger_google_fetch",
"arguments": {
"clientId": "string",
"connectionId": "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.