Update pipeline MCP tool
Update a GovTribe pipeline.
- MCP tool name:
Update_Pipeline - Data type: Pipeline data type
- Returns: Pipeline MCP response
- Annotations: Not read only, destructive, idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP
Examples
Resolve the pipeline before updating it. If you include tag_ids, the provided array replaces the pipeline's full tag set; omit tag_ids to leave tags unchanged.
Rename a capture pipeline
{
"tool": "Search_Pipelines",
"arguments": {
"query": "Modernization pipeline",
"fields_to_return": [
"govtribe_id",
"name",
"description"
]
}
}{
"tool": "Update_Pipeline",
"arguments": {
"pipeline_id": "<pipeline_govtribe_id>",
"name": "Federal modernization capture",
"description": "Track modernization opportunities from qualification through proposal planning.",
"tag_ids": [
"<tag_govtribe_id>"
]
}
}Related articles
- Pipeline MCP response: Review the response shape returned by this tool.
- Pipeline 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.