Create teaming interest MCP tool
Create a teaming interest expressing willingness to team on a specific federal contract or grant opportunity. intent=prime if the user wants to be the lead contractor; intent=sub if subcontractor. The interest is tied to one opportunity via (teamable_model_class, teamable_model_id). Triggers async AI summary generation and notification emails to potential teaming partners on the opportunity.
- MCP tool name:
Create_Teaming_Interest - Returns: Teaming interest MCP response
- Annotations: Not read only, destructive, not idempotent, closed world
- Surfaces: GovTribe AI
Examples
Teaming interests attach to the opportunity wrapper record, so resolve the opportunity first and pass its federal_meta_opportunity_id as teamable_model_id with teamable_model_class set to FederalMetaOpportunityModel. Resolve the vendor the user represents with Search_Vendors when the vendor GovTribe ID is not already known.
Required intake questions depend on intent. intent=prime requires capture_stage and sub_workshare_expectations. intent=sub requires role_and_workshare and relevant_experience, with optional socioeconomic_value, clearance_and_location, partner_preferences, and staffing_capacity.
Create a sub interest on a federal contract opportunity
{
"tool": "Search_Federal_Contract_Opportunities",
"arguments": {
"query": "facility modernization",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"federal_meta_opportunity_id"
]
}
}{
"tool": "Create_Teaming_Interest",
"arguments": {
"name": "Cloud migration subcontracting interest",
"intent": "sub",
"teamable_model_class": "FederalMetaOpportunityModel",
"teamable_model_id": "<federal_meta_opportunity_govtribe_id>",
"vendor_model_id": "<vendor_govtribe_id>",
"intakeQuestions": {
"role_and_workshare": {
"question": "role_and_workshare",
"userInput": "We can lead the cloud migration workstream and provide certified engineers for roughly 20 percent of the work.",
"instructions": "Describe the role you want and the workshare you can perform."
},
"relevant_experience": {
"question": "relevant_experience",
"userInput": "Three prior agency cloud migrations of similar scope in the last five years.",
"instructions": "Describe your relevant experience for this opportunity."
}
}
}
}Create a prime interest with workspace tags
{
"tool": "Create_Teaming_Interest",
"arguments": {
"name": "Prime interest for platform acquisition",
"intent": "prime",
"teamable_model_class": "FederalMetaOpportunityModel",
"teamable_model_id": "<federal_meta_opportunity_govtribe_id>",
"vendor_model_id": "<vendor_govtribe_id>",
"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 to 40 percent subcontracted across two or three partners.",
"instructions": "Describe your expected subcontractor workshare."
}
},
"tag_model_ids": [
"<tag_govtribe_id>"
]
}
}Related articles
- Teaming interest 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.