GovTribe

Update pursuit MCP tool

Update a GovTribe pursuit.

Examples

Resolve the pursuit first, and resolve a destination stage if the update moves the pursuit. If you include tag_ids, the provided array replaces the pursuit's full tag set; omit tag_ids to leave tags unchanged.

Update pursuit value and probability of win

{
  "tool": "Search_Pursuits",
  "arguments": {
    "query": "facility modernization capture",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "estimated_value",
      "stage",
      "pipeline"
    ]
  }
}
{
  "tool": "Update_Pursuit",
  "arguments": {
    "pursuit_id": "<pursuit_govtribe_id>",
    "name": "Facility modernization capture",
    "description": "Updated after review of the solicitation attachments and incumbent context.",
    "pwin": 45,
    "estimatedValue": 3200000,
    "estimatedDuration": 36,
    "estimatedAwardDate": "2026-09-30",
    "dueDate": "2026-06-15",
    "tag_ids": [
      "<tag_govtribe_id>"
    ]
  }
}

Move a pursuit to another stage

{
  "tool": "Search_Stages",
  "arguments": {
    "query": "Pursue",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "pipeline"
    ]
  }
}
{
  "tool": "Update_Pursuit",
  "arguments": {
    "pursuit_id": "<pursuit_govtribe_id>",
    "stage_id": "<stage_govtribe_id>"
  }
}