GovTribe

Search stages MCP tool

Searches pipeline stages and returns stage records with owners, pipeline context, and stage metadata.

Examples

Use stage search when the agent needs a workspace pipeline stage ID before creating tasks, moving pursuits, or filtering pipeline work.

Which stages named Triage are available in this workspace?

{
  "tool": "Search_Stages",
  "arguments": {
    "query": "Triage",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "type",
      "pipeline",
      "owner",
      "updated_at"
    ]
  }
}

Which stages belong to a known pipeline?

{
  "tool": "Search_Pipelines",
  "arguments": {
    "query": "Federal pipeline",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "owner",
      "stages"
    ]
  }
}
{
  "tool": "Search_Stages",
  "arguments": {
    "pipeline_ids": [
      "<pipeline_govtribe_id>"
    ],
    "fields_to_return": [
      "govtribe_id",
      "name",
      "type",
      "pipeline",
      "owner",
      "updated_at"
    ]
  }
}