Saved search MCP response
MCP tool response payload returned when agents retrieve GovTribe saved search records through MCP tools.
- Data type: Saved search data type
- Returned by: Search saved searches MCP tool; Create saved search MCP tool; Update saved search 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 |
frequency | string | Frequency attribute |
q | string | Query attribute |
filters | object | Filters attribute |
sorts | array | Sorts attribute |
view_results_url | string | View results URL attribute |
searches_govtribe_type | string | Searches GovTribe type attribute |
search_persistence_id | string | Search persistence ID attribute |
last_sent | string | Last sent attribute |
created_at | string | Created at attribute |
updated_at | string | Updated at attribute |
owner | relationship object | Owner attribute |
creator | relationship object | Creator attribute |
Relationship Returns
| Field | Returns |
|---|---|
owner | User MCP response |
creator | User MCP response |
Example
{
"created_at": "2022-09-15T16:33:38Z",
"creator": {
"govtribe_id": "CREATOR_ID",
"govtribe_type": "creator",
"govtribe_url": "https://govtribe.com/creator/CREATOR_ID",
"name": "Creator"
},
"filters": {
"opportunity_types": [
"Solicitation"
]
},
"frequency": "Daily",
"govtribe_id": "SAVED_SEARCH_ID",
"govtribe_type": "saved_search",
"govtribe_url": "https://govtribe.com/saved-searches/SAVED_SEARCH_ID",
"last_sent": "2026-01-20T14:00:00Z",
"name": "Example Saved Search",
"owner": {
"govtribe_id": "USER_ID",
"govtribe_type": "user",
"name": "Record Owner"
},
"q": "cloud modernization",
"search_persistence_id": "SEARCH_PERSISTENCE_ID",
"searches_govtribe_type": "federal_contract_opportunity",
"sorts": [
{
"key": "postedDate",
"direction": "desc"
}
],
"updated_at": "2022-09-15T16:33:38Z",
"view_results_url": "https://govtribe.com/searches/SEARCH_RESULTS_ID"
}