Contact group MCP response
MCP tool response payload returned when agents retrieve or manage GovTribe workspace contact groups.
- Data type: Contact group data type
- Returned by: Search contact groups MCP tool; Create contact group MCP tool; Update contact group MCP tool; Add contacts to contact group MCP tool; Remove contacts from contact group MCP tool
Fields
| Field | Type | Attribute |
|---|---|---|
govtribe_id | string | GovTribe ID attribute |
govtribe_type | string | GovTribe type attribute |
govtribe_url | string | GovTribe URL attribute |
name | string | Name attribute |
description | string | Description attribute |
created_at | string | Created at attribute |
updated_at | string | Updated at attribute |
owner | relationship object | Owner attribute |
creator | relationship object | Creator attribute |
contacts | relationship object array | Contact attribute |
tags | relationship object array | Tags attribute |
saved_search | relationship object | Saved search attribute |
contact_count | integer | Contact count attribute |
syncing | boolean or null | Syncing attribute |
last_sync | string or null | Last sync attribute |
recent_sync_records | object array | Recent sync records attribute |
Relationship Returns
| Field | Returns |
|---|---|
owner | User MCP response |
creator | User MCP response |
contacts | Contact MCP response |
tags | Tag MCP response |
saved_search | Saved search MCP response |
Example
{
"govtribe_id": "CONTACT_GROUP_ID",
"govtribe_type": "contact_group",
"govtribe_url": "https://govtribe.com/workspace/WORKSPACE_ID/contact-group/CONTACT_GROUP_ID",
"name": "Cloud capture contacts",
"description": "Contacts found through the cloud saved search.",
"created_at": "2026-05-29T14:00:00Z",
"updated_at": "2026-05-29T15:30:00Z",
"owner": {
"govtribe_id": "USER_ID",
"govtribe_type": "user",
"name": "Owner"
},
"creator": {
"govtribe_id": "USER_ID",
"govtribe_type": "user",
"name": "Creator"
},
"contacts": [
{
"govtribe_id": "CONTACT_ID",
"govtribe_type": "contact",
"govtribe_url": "https://govtribe.com/contact/contact-slug",
"name": "Contact Name",
"email": "contact@example.com"
}
],
"tags": [
{
"govtribe_id": "TAG_ID",
"govtribe_type": "tag",
"name": "Capture",
"background_color": "#2f855a"
}
],
"saved_search": {
"govtribe_id": "SAVED_SEARCH_ID",
"govtribe_type": "saved_search",
"name": "Cloud contacts"
},
"contact_count": 1,
"syncing": false,
"last_sync": "2026-05-29T15:30:00Z",
"recent_sync_records": [
{
"govtribe_id": "SYNC_RECORD_ID",
"created_at": "2026-05-29T15:30:00Z",
"updated_at": "2026-05-29T15:30:00Z",
"contact_count": 1,
"contact_ids": [
"CONTACT_ID"
]
}
]
}