GovTribe

Respond to teaming match MCP tool

Accept or decline a pending teaming match request. Only the recipient can respond. Use Withdraw_Teaming_Match if you are the requester wanting to cancel. Decline is recorded permanently — the same requester cannot re-request a match against this target interest, but the recipient remains free to initiate toward the requester. Confirm the match and the chosen response with the user before calling, especially for decline.

Examples

Find matches awaiting the user's response with my_pending_inbound, confirm the other party with the user, then respond. Accepting marks the sub interest as matched; declining permanently removes the match from agent retrieval.

Accept a pending inbound match

{
  "tool": "Search_Teaming_Matches",
  "arguments": {
    "my_pending_inbound": true,
    "fields_to_return": [
      "govtribe_id",
      "rationale",
      "expires_at",
      "viewer_context",
      "prime_teaming_interest",
      "sub_teaming_interest"
    ]
  }
}
{
  "tool": "Respond_To_Teaming_Match",
  "arguments": {
    "teaming_match_id": "<teaming_match_govtribe_id>",
    "response": "accept"
  }
}

Decline a pending inbound match

{
  "tool": "Respond_To_Teaming_Match",
  "arguments": {
    "teaming_match_id": "<teaming_match_govtribe_id>",
    "response": "decline"
  }
}