Withdraw teaming interest MCP tool
Withdraw a teaming interest. Cancels every pending match touching this interest with notifications sent to each affected party. The interest can be reopened later with Reopen_Teaming_Interest, but cancelled matches are not restored. Owner-only. Before calling, name the interest (opportunity + intent) and the count of pending matches that will be cancelled, then obtain explicit user confirmation.
- MCP tool name:
Withdraw_Teaming_Interest - Returns: Teaming interest MCP response
- Annotations: Not read only, destructive, idempotent, closed world
- Surfaces: GovTribe AI
Examples
Resolve the interest and its pending match counts first so the user can confirm exactly what will be cancelled. To leave a single match while keeping the interest open, use the Withdraw teaming match MCP tool instead.
Withdraw an open interest after confirming pending matches
{
"tool": "Search_Teaming_Interests",
"arguments": {
"teaming_interest_statuses": ["open"],
"fields_to_return": [
"govtribe_id",
"name",
"intent",
"teamable",
"pending_match_count"
]
}
}{
"tool": "Withdraw_Teaming_Interest",
"arguments": {
"teaming_interest_id": "<teaming_interest_govtribe_id>"
}
}Related articles
- Teaming interest MCP response: Review the response shape returned by this tool.
- GovTribe AI: Review the GovTribe AI surface where this tool can be called.
- Source identifiers and record matching: Use GovTribe IDs and source identifiers when passing records between tools.
Update teaming interest
Update the editable fields of an existing teaming interest. Only `name`, `intakeQuestions`, and `tag_model_ids` are editable; status, intent, vendor, and teamable are not editable via this tool. Changing intakeQuestions triggers async regeneration of the interest's AI-generated public name and summary. Status transitions are handled by Hide_Teaming_Interest, Withdraw_Teaming_Interest, Lock_In_Teaming_Team, and Disband_Teaming_Team. Owner-only.
Withdraw teaming match
Withdraw from a teaming match. Pending matches can only be withdrawn by the original requester (cancels the outgoing request) — recipients should use Respond_To_Teaming_Match with response="decline" instead. Accepted matches can be withdrawn by either participant (leaves the team); if a sub leaves and was the last accepted partner, the prime interest auto-reverts to open. To cancel the entire interest in the opportunity, use Withdraw_Teaming_Interest. Confirm the match (other party + opportunity) with the user before calling; withdrawal cannot be undone from the agent.