GovTribe

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.

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