GovTribe

Get teaming messages MCP tool

Read messages from a teaming conversation: pass teaming_match_id for a match conversation or teaming_interest_id (prime side) for the team-hub conversation. Returns up to 50 messages per page, oldest to newest, including system messages; page backward with `before`. By default this is a non-mutating peek — pass mark_read=true to also advance the viewer's read receipt and notify other participants. Only conversation participants can read.

Examples

Pass exactly one of teaming_match_id or teaming_interest_id. Use teaming_match_id for a match conversation, or a PRIME interest's teaming_interest_id for the team-hub conversation that exists once the prime locks in the team. Messages return oldest to newest, up to 50 per page (limit accepts 1–50, default 50). Reading does not mark the conversation as read unless you pass mark_read=true, which advances the viewer's read receipt and broadcasts the change to the other participants. Omit it, or pass false, for a non-mutating peek.

Read a match conversation

Resolve the match first, then read its conversation.

{
  "tool": "Search_Teaming_Matches",
  "arguments": {
    "fields_to_return": [
      "govtribe_id",
      "status",
      "viewer_context",
      "conversation_summary"
    ]
  }
}
{
  "tool": "Get_Teaming_Messages",
  "arguments": {
    "teaming_match_id": "<teaming_match_govtribe_id>"
  }
}

Read a team-hub conversation as the prime

{
  "tool": "Get_Teaming_Messages",
  "arguments": {
    "teaming_interest_id": "<prime_teaming_interest_govtribe_id>"
  }
}

Page backward through older messages

While has_older is true, pass the oldest returned created_at as before.

{
  "tool": "Get_Teaming_Messages",
  "arguments": {
    "teaming_match_id": "<teaming_match_govtribe_id>",
    "before": "2026-06-08T14:05:00Z",
    "limit": 50
  }
}