GovTribe

Contact group MCP response

MCP tool response payload returned when agents retrieve or manage GovTribe workspace contact groups.

Fields

FieldTypeAttribute
govtribe_idstringGovTribe ID attribute
govtribe_typestringGovTribe type attribute
govtribe_urlstringGovTribe URL attribute
namestringName attribute
descriptionstringDescription attribute
created_atstringCreated at attribute
updated_atstringUpdated at attribute
ownerrelationship objectOwner attribute
creatorrelationship objectCreator attribute
contactsrelationship object arrayContact attribute
tagsrelationship object arrayTags attribute
saved_searchrelationship objectSaved search attribute
contact_countintegerContact count attribute
syncingboolean or nullSyncing attribute
last_syncstring or nullLast sync attribute
recent_sync_recordsobject arrayRecent sync records attribute

Relationship Returns

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"
      ]
    }
  ]
}