Create pursuit MCP tool
Creates a new pursuit in the specified stage, optionally seeding fields from a linked item.
- MCP tool name:
Create_Pursuit - Data type: Pursuit data type
- Returns: Pursuit MCP response
- Annotations: Not read only, destructive, not idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP
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
}
}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.