GovTribe

Search federal contract vehicle opportunities MCP tool

Searches workspace-scoped federal contract vehicle opportunities available through the authenticated user's active eBuy integration.

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"
    ]
  }
}