Withdraw teaming match MCP tool
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.
- MCP tool name:
Withdraw_Teaming_Match - Returns: Teaming match MCP response
- Annotations: Not read only, destructive, not idempotent, closed world
- Surfaces: GovTribe AI
Examples
Resolve the match and confirm the other party with the user before withdrawing. Use viewer_context to check whether the user is the requester on a pending match.
Cancel an outgoing pending request
{
"tool": "Search_Teaming_Matches",
"arguments": {
"teaming_match_statuses": ["pending"],
"fields_to_return": [
"govtribe_id",
"rationale",
"viewer_context",
"prime_teaming_interest",
"sub_teaming_interest"
]
}
}{
"tool": "Withdraw_Teaming_Match",
"arguments": {
"teaming_match_id": "<teaming_match_govtribe_id>"
}
}Leave an accepted team
{
"tool": "Search_Teaming_Matches",
"arguments": {
"teaming_match_statuses": ["accepted"],
"fields_to_return": [
"govtribe_id",
"viewer_context",
"prime_teaming_interest",
"sub_teaming_interest"
]
}
}{
"tool": "Withdraw_Teaming_Match",
"arguments": {
"teaming_match_id": "<teaming_match_govtribe_id>"
}
}Related articles
- Teaming match 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.
Withdraw teaming interest
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 responses
Reference GovTribe MCP tool response payloads that agents can return, cite, or use in AI workflows.