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.
- MCP tool name:
Submit_Teaming_Match_Feedback - Returns: Teaming match MCP response
- Annotations: Not read only, destructive, not idempotent, closed world
- Surfaces: GovTribe AI
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
}
}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.
Show stats display
Render KPI summary cards, not charts. Each stat requires `key`, `label`, and `value`, and can also include a strict `format` object, a `diff` object like {"value":12.4}, and a `sparkline` object like {"data":[31,34,36,39,42]}.
Sync contact group
Queue a saved-search-backed GovTribe contact group sync on the exports queue.