Update pursuit MCP tool
Update a GovTribe pursuit.
- MCP tool name:
Update_Pursuit - Data type: Pursuit data type
- Returns: Pursuit MCP response
- Annotations: Not read only, destructive, idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP
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>"
}
}Related articles
- Pursuit MCP response: Review the response shape returned by this tool.
- Pursuit data type: Understand the shared record fields and relationships used by this tool.
- 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.