Update stage MCP tool
Update a GovTribe stage.
- MCP tool name:
Update_Stage - Data type: Stage data type
- Returns: Stage MCP response
- Annotations: Not read only, destructive, idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP
Examples
Resolve the stage before updating its name, description, index, or pursuit order.
Rename a stage without changing pursuit order
{
"tool": "Search_Stages",
"arguments": {
"query": "No-bid review",
"fields_to_return": [
"govtribe_id",
"name",
"pipeline"
]
}
}{
"tool": "Update_Stage",
"arguments": {
"stage_id": "<stage_govtribe_id>",
"name": "Leadership review",
"description": "Opportunities awaiting a pursue or no-bid decision.",
"index": 2,
"pursuit_index_map": []
}
}Reorder pursuits inside a stage
{
"tool": "Update_Stage",
"arguments": {
"stage_id": "<stage_govtribe_id>",
"pursuit_index_map": [
{
"_id": "<first_pursuit_govtribe_id>",
"index": 0
},
{
"_id": "<second_pursuit_govtribe_id>",
"index": 1
}
]
}
}Related articles
- Stage MCP response: Review the response shape returned by this tool.
- Stage 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.