Activity MCP response
MCP tool response payload returned when agents retrieve GovTribe activity records through MCP tools.
- Data type: Activity data type
- Returned by: Search Activity MCP tool
Fields
| Field | Type | Attribute |
|---|---|---|
govtribe_id | string | GovTribe ID attribute |
govtribe_type | string | GovTribe type attribute |
name | string | Name attribute |
timestamp | string or null | Timestamp attribute |
activity_govtribe_type | string or null | Activity GovTribe type attribute |
change_type | string | Change type attribute |
changed_fields | array | Changed fields attribute |
is_unknown | boolean | Is unknown attribute |
match_scopes | array | Match scopes attribute |
actor | object or null | Actor attribute |
target | object or null | Target attribute |
objects | array | Objects attribute |
related_model_ids | array | Related model IDs attribute |
Example
{
"actor": {
"govtribe_id": "USER_ID",
"govtribe_type": "user",
"name": "Record Owner"
},
"activity_govtribe_type": "federal_contract_opportunity",
"change_type": "updated",
"changed_fields": [
"response_date",
"set_aside"
],
"govtribe_id": "ACTIVITY_ID",
"govtribe_type": "activity",
"is_unknown": false,
"match_scopes": [
"direct_target"
],
"name": "Updated Federal Contract Opportunity",
"objects": [
{
"field": "response_date",
"newValue": "2026-06-30T16:00:00Z",
"oldValue": "2026-06-15T16:00:00Z",
"valueType": "updated-object"
}
],
"related_model_ids": [
"FEDERAL_AGENCY_ID",
"VENDOR_ID"
],
"target": {
"govtribe_id": "OPPORTUNITY_ID",
"govtribe_type": "federal_contract_opportunity",
"name": "Example Opportunity"
},
"timestamp": "2026-06-01T18:30:00Z"
}