GovTribe

Teaming interest MCP response

MCP tool response returned when agents retrieve or change GovTribe teaming interest records through MCP tools.

The returned teaming interest record represents one user's standing offer to team on a specific teamable record, either as the prime contractor or as a subcontractor. The interest can be tied to any of six teamable record types: a federal contract opportunity, a federal grant opportunity, a federal contract IDV, a federal contract vehicle, a federal forecast, or a federal contract award. Some fields are visible only to the interest owner, and some discovery fields are populated only on search results.

Pass govtribe_id into teaming_interest_id for update, withdraw, hide, lock-in, or disband calls, and into target_interest_id or requester_interest_id for match requests. govtribe_type is always teaming_interest.

Search_Teaming_Interests returns only govtribe_id when you omit fields_to_return. Mutation tools return the full record for the affected interest.

Owner-only fields (source, status, intakeQuestions, vendor, team_members) are omitted when the viewer does not own the interest, so cross-user discovery results never expose another user's intake answers or status.

match_state_for_viewer, responsiveness_score, can_request_match, and pending_match_count are computed per page of search results. Request them through fields_to_return on Search_Teaming_Interests when deciding whether to request a match.

Fields

FieldTypeAttribute
govtribe_idstringGovTribe ID attribute
govtribe_typestringGovTribe type attribute
govtribe_urlstringGovTribe URL attribute
namestringName attribute
govtribe_ai_summarystringGovTribe AI summary attribute
intakeQuestionsobjectIntake questions attribute
intentstringIntent attribute
sourcestringInterest source attribute
statusstringStatus attribute
vendorSourcestringVendor source attribute
open_atstring or nullOpened at attribute
matched_atstring or nullMatched at attribute
withdrawn_atstring or nullWithdrawn at attribute
hidden_atstring or nullHidden at attribute
created_atstringCreated at attribute
updated_atstringUpdated at attribute
userobjectUser attribute
vendorobjectVendor attribute
teamableobjectTeamable attribute
tagsobject arrayTags attribute
descriptionsobject arrayDescriptions attribute
accoladesarrayAccolades attribute
match_state_for_viewerobject array or nullMatch state for viewer attribute
team_membersobject or nullTeam members attribute
responsiveness_scoreobject or nullResponsiveness score attribute
can_request_matchboolean or nullCan request match attribute
pending_match_countobject or nullPending match count attribute

Relationship Returns

Example

{
  "govtribe_id": "TEAMING_INTEREST_ID",
  "govtribe_type": "teaming_interest",
  "govtribe_url": "https://govtribe.com/teaming/TEAMING_INTEREST_ID",
  "name": "Request for proposal - Commercial online platform acquisition",
  "govtribe_ai_summary": "Seeking small business subcontractors for a commercial online platform acquisition focused on cloud-native modernization and agile delivery.",
  "intent": "prime",
  "source": "user",
  "status": "open",
  "vendorSource": "linked_vendor",
  "open_at": "2026-02-26T22:36:27Z",
  "matched_at": null,
  "withdrawn_at": null,
  "hidden_at": null,
  "created_at": "2026-02-26T22:36:27Z",
  "updated_at": "2026-05-20T19:45:02Z",
  "teamable": {
    "govtribe_id": "OPPORTUNITY_ID",
    "govtribe_type": "federal_contract_opportunity",
    "name": "Request for proposal - Commercial online platform acquisition",
    "govtribe_url": "https://govtribe.com/opportunity/federal-contract-opportunity/OPPORTUNITY_SLUG"
  },
  "tags": [],
  "user": {
    "govtribe_id": "USER_ID",
    "govtribe_type": "user",
    "name": "Record Owner",
    "email": "owner@example.com"
  },
  "vendor": {
    "govtribe_id": "VENDOR_ID",
    "govtribe_type": "vendor",
    "name": "Example Vendor"
  },
  "intakeQuestions": {
    "capture_stage": {
      "question": "capture_stage",
      "userInput": "Partner outreach with a bid decision expected next quarter.",
      "instructions": "Describe your capture stage."
    },
    "sub_workshare_expectations": {
      "question": "sub_workshare_expectations",
      "userInput": "About 30-40% subcontracted across two or three partners.",
      "instructions": "Describe your expected subcontractor workshare."
    }
  },
  "can_request_match": false,
  "pending_match_count": {
    "inbound": 1,
    "outbound": 0
  }
}