Search federal contract IDVs MCP tool
Searches GovTribe federal contract IDVs and returns vehicle records with ceilings, awardees, agencies, and related awards.
- MCP tool name:
Search_Federal_Contract_IDVs - Data type: Federal contract IDV data type
- Returns: Federal contract IDV MCP response
- Search modes: Keyword, Semantic
- Annotations: Read only, not destructive, idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP
Examples
Use these examples as task-shaped tool calls. Examples may combine query, search_mode, filters, sorting, returned fields, resolver calls, and aggregations. When an example resolves a related record first, pass the returned govtribe_id into the target search.
Which federal contract IDVs mention facility modernization?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"query": "facility modernization",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"description",
"awardee",
"updated_at"
]
}
}Which federal contract IDVs exactly mention "technical support services"?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"query": "\"technical support services\"",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"description",
"contract_number",
"govtribe_ai_summary"
]
}
}Which federal contract IDVs are conceptually related to cybersecurity modernization?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"query": "cybersecurity modernization, zero trust upgrades, network defense services",
"search_mode": "semantic",
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs were awarded in the last 12 months?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"award_date_range": {
"from": "now-12M/d",
"to": "now/d"
},
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
],
"sort": {
"key": "awardDate",
"direction": "desc"
}
}
}Which IDVs were not set aside for a small-business or similar program?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"set_aside_types": [
"No Set-Aside Used"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs has my team not moved into capture work?
This example uses the authenticated GovTribe workspace context.
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"pursuing": false,
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs were awarded in the last 12 months using Award Date?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"award_date_range": {
"from": "now-12M/d",
"to": "now/d"
},
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
],
"sort": {
"key": "awardDate",
"direction": "desc"
}
}
}Which IDVs were awarded to Lockheed Martin?
{
"tool": "Search_Vendors",
"arguments": {
"query": "Lockheed Martin",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"uei"
]
}
}{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"vendor_ids": [
"<lockheed_martin_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDV awardees have 8(a) certifications expiring in the next 12 months?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"vendor_sba_8a_expiration_date_range": {
"from": "now/d",
"to": "now+12M/d"
},
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDV awardees have HUBZone certifications expiring in the next 12 months?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"vendor_sba_hubzone_expiration_date_range": {
"from": "now/d",
"to": "now+12M/d"
},
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs were awarded by Department of the Army offices?
{
"tool": "Search_Federal_Agencies",
"arguments": {
"query": "Department of the Army",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"acronym"
]
}
}{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"contracting_federal_agency_ids": [
"<department_of_the_army_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs are connected to Kimberly Licence?
{
"tool": "Search_Contacts",
"arguments": {
"query": "Kimberly Licence",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"organization"
]
}
}{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"contact_ids": [
"<kimberly_licence_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs are indefinite delivery contracts?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"federal_contract_idv_types": [
"Indefinite Delivery Contract"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs used Full and Open Competition?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"extent_competed": [
"Full and Open Competition"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs match IDV 47QRCA25DS243?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"query": "FA823224D0002",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"contract_number",
"name"
]
}
}{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"federal_contract_i_d_v_ids": [
"<fa823224d0002_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs are connected to the OASIS+ Total Small Business source opportunity?
{
"tool": "Search_Federal_Contract_Opportunities",
"arguments": {
"query": "Marine Boatyard Services",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"federal_meta_opportunity_id"
]
}
}{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"federal_meta_opportunity_ids": [
"<marine_boatyard_services_federal_meta_opportunity_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs sit under Multiple Award Schedule?
{
"tool": "Search_Federal_Contract_Vehicles",
"arguments": {
"query": "Multiple Award Schedule",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name"
]
}
}{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"federal_contract_vehicle_ids": [
"<multiple_award_schedule_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs are funded by Department of the Army offices?
{
"tool": "Search_Federal_Agencies",
"arguments": {
"query": "Department of the Army",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"acronym"
]
}
}{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"funding_federal_agency_ids": [
"<department_of_the_army_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs stop accepting orders in the next 12 months?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"last_date_to_order_range": {
"from": "now/d",
"to": "now+12M/d"
},
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs are tied to the Clinger Cohen Act?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"legislative_mandate": [
"Clinger Cohen Act"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs are multiple-award vehicles?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"multiple_or_single_award": [
"Multiple Award"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs are in NAICS 541512?
{
"tool": "Search_Naics_Categories",
"arguments": {
"query": "541512",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"code",
"name"
]
}
}{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"naics_category_ids": [
"<naics_541512_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs are tied to Coronavirus COVID-19 national interest action coding?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"national_interest_action_codes": [
"Coronavirus COVID-19"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs are in PSC R408?
{
"tool": "Search_Psc_Categories",
"arguments": {
"query": "R408",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"code",
"name"
]
}
}{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"psc_category_ids": [
"<psc_r408_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs use Firm Fixed Price pricing?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"pricing_type": [
"Firm Fixed Price"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs name Advanced Technology International as primary consortia member?
{
"tool": "Search_Vendors",
"arguments": {
"query": "Advanced Technology International",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"uei"
]
}
}{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"primary_consortia_member_ids": [
"<advanced_technology_international_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs are already connected to my team's pursuit work?
This example uses the authenticated GovTribe workspace context.
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"pursuing": true,
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs are SBIR Phase II actions?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"research_phase": [
"SBIR Program Phase II Action"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Which IDVs are total small-business set-asides?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"set_aside_types": [
"Total Small Business"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"award_date"
]
}
}Aggregation examples
Use aggregation examples when the answer needs rollups instead of individual rows. These examples use quoted keyword anchors in query so long-tail matches do not skew buckets; broaden the query only when the user asks for exploratory sizing, and pair broader queries with structured filters when possible. Set per_page to 0 when row results are not needed.
Which agencies drive cybersecurity operations IDVs?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"query": "\"cybersecurity operations\" + analytics",
"per_page": 0,
"aggregations": [
"top_funding_federal_agencies_by_doc_count",
"top_contracting_federal_agencies_by_doc_count"
],
"search_mode": "keyword"
}
}Which vendors lead program management support IDVs?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"query": "\"program management support\"",
"per_page": 0,
"aggregations": [
"top_awardees_by_doc_count"
],
"search_mode": "keyword"
}
}Which vehicles and categories organize facilities management IDVs?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"query": "\"facilities management\" + \"building operations\"",
"per_page": 0,
"aggregations": [
"top_vehicles_by_doc_count",
"top_naics_codes_by_doc_count",
"top_psc_codes_by_doc_count"
],
"search_mode": "keyword"
}
}Which set-asides and transaction contacts shape agile transformation IDVs?
{
"tool": "Search_Federal_Contract_IDVs",
"arguments": {
"query": "\"technology transformation\" + \"agile lifecycle\"",
"per_page": 0,
"aggregations": [
"top_set_aside_types_by_doc_count",
"top_transaction_contacts_by_doc_count"
],
"search_mode": "keyword"
}
}Related articles
- Federal contract IDV MCP response: Review the response shape returned by this tool.
- Federal contract IDV data type: Understand the shared record fields and relationships used by this tool.
- Choose a search mode and write queries: Choose keyword or semantic search behavior and shape
queryvalues. - GovTribe AI: Review the GovTribe AI surface where this tool can be called.
- GovTribe for Agents: Use GovTribe for Agents as the starting point for MCP tools, MCP tool responses, and guides.
- Source identifiers and record matching: Use GovTribe IDs and source identifiers when passing records between tools.
Search federal contract awards
Searches GovTribe federal contract awards and returns award records with funding details, participants, and category links.
Search federal contract opportunities
Searches GovTribe federal contract opportunities and returns solicitation records with requirements, timelines, files, and contacts.