GovTribe

Update stage MCP tool

Update a GovTribe stage.

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
      }
    ]
  }
}