MCPFerramentas MCP/Conexões/refetch_connection_listings
refetch_connection_listings
Writeconnections:write
Force an immediate re-fetch of a connected account's listings straight from the platform (not just a re-score of what's already stored — that's request_connection_matches). Runs synchronously; returns once the fetch completes. Identify the account by its connectionId (from list_connected_accounts).
Parâmetros
connectionIdstringobrigatório
The id of the connected account to re-fetch (required).
Exemplo de solicitação
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "refetch_connection_listings",
"arguments": {
"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.