Sync contact group MCP response
MCP tool response returned after queueing a saved-search-backed contact group sync.
- Returned by: Sync contact group MCP tool
- Response type: Structured sync queue status
Response Shape
The sync contact group tool queues SyncSavedSearchToContactGroupJob on the exports queue and returns the queued status snapshot.
| Field | Type | Notes |
|---|---|---|
status | string | queued when the sync job is accepted. |
contact_group_id | string | GovTribe ID of the contact group queued for sync. |
contact_group_url | string | GovTribe URL for the contact group. |
saved_search_id | string | GovTribe ID of the saved Contact search backing the group. |
syncing | boolean | Current syncing flag at the time the tool returns. |
last_sync | string or null | Most recent saved-search sync timestamp before the queued job runs. |
next_step | string | Guidance for checking the contact group after the exports queue processes the job. |
Example
{
"status": "queued",
"contact_group_id": "CONTACT_GROUP_ID",
"contact_group_url": "https://govtribe.com/workspace/WORKSPACE_ID/contact-group/CONTACT_GROUP_ID",
"saved_search_id": "SAVED_SEARCH_ID",
"syncing": false,
"last_sync": "2026-05-29T15:30:00Z",
"next_step": "Check the contact group again after the exports queue processes the sync."
}