Search federal contract vehicle opportunities MCP tool
Searches workspace-scoped federal contract vehicle opportunities available through the authenticated user's active eBuy integration.
- MCP tool name:
Search_Federal_Contract_Vehicle_Opportunities - Data type: Federal contract vehicle opportunity data type
- Returns: Federal contract vehicle opportunity MCP response
- Search modes: Keyword, Semantic
- Annotations: Read only, not destructive, idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP
Search_Federal_Contract_Vehicle_Opportunities searches only the vehicle opportunities GovTribe can associate with the authenticated user's workspace and active eBuy access. It does not return a public feed of all eBuy opportunities.
Examples
Use these examples as task-shaped tool calls. Replace placeholder IDs with values returned by earlier GovTribe MCP calls.
Which accessible vehicle opportunities mention cybersecurity support?
{
"tool": "Search_Federal_Contract_Vehicle_Opportunities",
"arguments": {
"query": "cybersecurity support",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"solicitation_number",
"opportunity_state",
"posted_date",
"due_date",
"govtribe_url"
]
}
}Which accessible vehicle opportunities are due soonest?
{
"tool": "Search_Federal_Contract_Vehicle_Opportunities",
"arguments": {
"due_date_range": {
"from": "now/d",
"to": "now+45d/d"
},
"fields_to_return": [
"govtribe_id",
"name",
"opportunity_type",
"opportunity_state",
"due_date",
"federal_contract_vehicles"
],
"sort": {
"key": "dueDate",
"direction": "asc"
}
}
}Which accessible vehicle opportunities are tied to a known vehicle?
{
"tool": "Search_Federal_Contract_Vehicle_Opportunities",
"arguments": {
"federal_contract_vehicle_ids": [
"<federal_contract_vehicle_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"solicitation_number",
"federal_contract_vehicles",
"federal_contract_vehicle_subcategories",
"posted_date",
"due_date"
]
}
}Which accessible vehicle opportunities are not already in a pursuit?
{
"tool": "Search_Federal_Contract_Vehicle_Opportunities",
"arguments": {
"query": "cloud migration",
"pursuing": [
"not_pursuing"
],
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"opportunity_state",
"due_date"
]
}
}Aggregation examples
Use aggregation examples when the answer needs counts by agency, set-aside, or NAICS category instead of individual opportunity rows. Set per_page to 0 when row results are not needed.
Which agencies have accessible cybersecurity vehicle opportunities?
{
"tool": "Search_Federal_Contract_Vehicle_Opportunities",
"arguments": {
"query": "\"cybersecurity\"",
"search_mode": "keyword",
"per_page": 0,
"aggregations": [
"top_federal_agencies_by_doc_count",
"top_set_aside_types_by_doc_count",
"top_naics_codes_by_doc_count"
]
}
}Related articles
- Federal contract vehicle opportunity MCP response: Review the response shape returned by this tool.
- Federal contract vehicle opportunity 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 sub awards
Searches GovTribe federal contract sub-awards and returns subcontract records with amounts, primes, subs, and agency context.
Search federal contract vehicles
Searches GovTribe federal contract vehicles and returns vehicle records with scope, ordering windows, and linked awards.