GovTribe

Submit teaming match feedback MCP tool

Submit sentiment + optional text feedback about a teaming match. Reachable for pending and accepted matches only (declined, withdrawn, and expired matches are soft-deleted from agent retrieval). Either participant can submit feedback. The agent should only do so once the user has finished engaging with the match. Sentiment is a boolean (true=positive, false=negative); text is optional, max 2000 chars. Feedback is recorded per-account against the match record.

Examples

Resolve the match first, then record the user's experience. Feedback is stored once per account on the match record, and the latest submission replaces the account's earlier feedback.

Submit positive feedback on an accepted match

{
  "tool": "Search_Teaming_Matches",
  "arguments": {
    "teaming_match_statuses": ["accepted"],
    "fields_to_return": [
      "govtribe_id",
      "viewer_context",
      "feedback_for_me"
    ]
  }
}
{
  "tool": "Submit_Teaming_Match_Feedback",
  "arguments": {
    "teaming_match_id": "<teaming_match_govtribe_id>",
    "sentiment": true,
    "text": "Responsive partner with a clear workshare plan. We would team with them again."
  }
}

Submit negative feedback without text

{
  "tool": "Submit_Teaming_Match_Feedback",
  "arguments": {
    "teaming_match_id": "<teaming_match_govtribe_id>",
    "sentiment": false
  }
}