GovTribe

Load search results MCP response

MCP tool response returned by the Load search results MCP tool.

Response Shape

The response hydrates a previously created search-results preview with record rows and a GovTribe URL.

FieldTypeNotes
resultsobject arrayLLM resource rows loaded from the temporary search result set. The row shape depends on the record type stored in the result set.
govtribe_urlstringGovTribe URL that opens the full result set in the web app.
total_countintegerTotal 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"
    }
  ],
  "govtribe_url": "https://govtribe.com/federal-contract-awards?search_temp=SEARCH_RESULTS_ID",
  "total_count": 42
}