Government file MCP response
MCP tool response payload returned when agents retrieve GovTribe government file records through MCP tools.
- Data type: Government file data type
- Returned by: Search government files MCP tool
Fields
| Field | Type | Attribute |
|---|---|---|
govtribe_id | string | GovTribe ID attribute |
govtribe_ai_summary | string | GovTribe AI summary attribute |
govtribe_type | string | GovTribe type attribute |
govtribe_url | string | GovTribe URL attribute |
name | string | Name attribute |
download_url | string | Download URL attribute |
size | number | Size attribute |
posted_date | string | Posted date attribute |
content_snippet | string | Content snippet attribute |
updated_at | string | Updated at attribute |
parent_record | relationship object array | Parent record attribute |
found_in_file_contacts | relationship object array | Contact attribute |
Relationship Returns
| Field | Returns |
|---|---|
parent_record | Federal contract opportunity MCP response array, Federal grant opportunity MCP response array, Federal contract IDV MCP response array, State and local contract opportunity MCP response array, State and local contract award MCP response array, State and local contract IDV MCP response array, State and local contract vehicle MCP response array |
found_in_file_contacts | Contact MCP response array |
Example
{
"content_snippet": "Representative file content snippet.",
"download_url": "https://govtribe.com/download/GOVERNMENT_FILE_ID",
"found_in_file_contacts": [
{
"govtribe_id": "CONTACT_ID",
"govtribe_type": "contact",
"govtribe_url": "https://govtribe.com/contact/CONTACT_ID",
"name": "Contact Name",
"email": "contact@example.gov"
}
],
"govtribe_ai_summary": "Representative AI-generated summary of the record and surrounding context.",
"govtribe_id": "GOVERNMENT_FILE_ID",
"govtribe_type": "government_file",
"govtribe_url": "https://govtribe.com/file/government-file/GOVERNMENT_FILE_ID",
"name": "Example Government File.pdf",
"parent_record": {
"govtribe_id": "PARENT_RECORD_ID",
"govtribe_type": "federal_contract_opportunity",
"govtribe_url": "https://govtribe.com/opportunity/federal-contract-opportunity/PARENT_RECORD_ID",
"name": "Parent record"
},
"posted_date": "2026-04-27T13:55:06Z",
"size": 204800,
"updated_at": "2026-04-27T18:33:33Z"
}