GovTribe

Create pursuit MCP tool

Creates a new pursuit in the specified stage, optionally seeding fields from a linked item.

Examples

Resolve the destination stage first, then create the pursuit in that stage. Include tag_ids to set workspace tags when the pursuit is created.

Create a pursuit in the qualification stage

{
  "tool": "Search_Stages",
  "arguments": {
    "query": "Qualification",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "pipeline"
    ]
  }
}
{
  "tool": "Create_Pursuit",
  "arguments": {
    "stage_id": "<qualification_stage_govtribe_id>",
    "name": "Facility modernization capture",
    "description": "Assess fit, incumbent signals, and near-term response requirements.",
    "pwin": 35,
    "estimatedValue": 2500000,
    "estimatedDuration": 36,
    "estimatedAwardDate": "2026-09-30",
    "dueDate": "2026-06-15",
    "tag_ids": [
      "<tag_govtribe_id>"
    ]
  }
}

Create a pursuit from a linked federal opportunity

{
  "tool": "Search_Federal_Contract_Opportunities",
  "arguments": {
    "query": "facility modernization",
    "search_mode": "semantic",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "due_date"
    ]
  }
}
{
  "tool": "Create_Pursuit",
  "arguments": {
    "stage_id": "<target_stage_govtribe_id>",
    "linked_item_model_class": "FederalContractOpportunityModel",
    "linked_item_id": "<federal_contract_opportunity_govtribe_id>",
    "pwin": 40
  }
}