Load search results MCP response
MCP tool response returned by the Load search results MCP tool.
- Returned by: Load search results MCP tool
- Response type: Structured hydration payload
Response Shape
The response hydrates a previously created search-results preview with record rows and a GovTribe URL.
| Field | Type | Notes |
|---|---|---|
results | object array | LLM resource rows loaded from the temporary search result set. The row shape depends on the record type stored in the result set. |
govtribeUrl | string | GovTribe URL that opens the full result set in the web app. |
totalCount | integer | Total number of hits in the temporary search result set. |
Follow-up Behavior
Use this response when the app needs hydrated result rows or when an agent needs a clickable GovTribe URL for the full result set.
Example
{
"results": [
{
"govtribe_id": "RESULT_ID",
"title": "Example result",
"url": "https://govtribe.com/search/result/RESULT_ID"
}
],
"govtribeUrl": "https://govtribe.com/federal-contract-awards?search_temp=SEARCH_RESULTS_ID",
"totalCount": 42
}