Search major defense programs MCP tool
Searches GovTribe major defense programs and returns program records with codes, acquisition data, and related awards.
- MCP tool name:
Search_Major_Defense_Programs - Data type: DOD acquisition program data type
- Returns: DOD acquisition program MCP response
- Search modes: Keyword, Semantic
- Annotations: Read only, not destructive, idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP
Examples
Use these examples as task-shaped tool calls. Examples may combine query, search_mode, filters, sorting, returned fields, resolver calls, and aggregations. When an example resolves a related record first, pass the returned govtribe_id into the target search.
Which major defense programs mention facility modernization?
{
"tool": "Search_Major_Defense_Programs",
"arguments": {
"query": "facility modernization",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"description",
"updated_at",
"code"
]
}
}Which major defense programs exactly mention "technical support services"?
{
"tool": "Search_Major_Defense_Programs",
"arguments": {
"query": "\"technical support services\"",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"description",
"code",
"govtribe_ai_summary"
]
}
}Which major defense programs are conceptually related to cybersecurity modernization?
{
"tool": "Search_Major_Defense_Programs",
"arguments": {
"query": "cybersecurity modernization, zero trust upgrades, network defense services",
"search_mode": "semantic",
"fields_to_return": [
"govtribe_id",
"name",
"govtribe_ai_summary",
"description",
"code"
]
}
}Which major defense programs are tied to the Department of the Navy?
{
"tool": "Search_Federal_Agencies",
"arguments": {
"query": "Department of the Navy",
"search_mode": "keyword",
"fields_to_return": [
"govtribe_id",
"name",
"acronym"
]
}
}{
"tool": "Search_Major_Defense_Programs",
"arguments": {
"federal_agency_ids": [
"<department_of_the_navy_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"code",
"govtribe_ai_summary",
"description"
]
}
}Aggregation examples
Use aggregation examples when the answer needs rollups instead of individual rows. These examples use quoted keyword anchors in query so long-tail matches do not skew buckets; broaden the query only when the user asks for exploratory sizing, and pair broader queries with structured filters when possible. Set per_page to 0 when row results are not needed.
Which organizations are most represented among aircraft modernization major defense programs?
{
"tool": "Search_Major_Defense_Programs",
"arguments": {
"query": "\"aircraft modernization\"",
"per_page": 0,
"aggregations": [
"top_federal_agencies_by_doc_count"
],
"search_mode": "keyword"
}
}Related articles
- DOD acquisition program MCP response: Review the response shape returned by this tool.
- DOD acquisition program data type: Understand the shared record fields and relationships used by this tool.
- Choose a search mode and write queries: Choose keyword or semantic search behavior and shape
queryvalues. - GovTribe AI: Review the GovTribe AI surface where this tool can be called.
- GovTribe for Agents: Use GovTribe for Agents as the starting point for MCP tools, MCP tool responses, and guides.
- Source identifiers and record matching: Use GovTribe IDs and source identifiers when passing records between tools.
Search line items
Searches GovTribe state and local awarded line items and returns unit prices, quantities, and parent award context for pricing evidence workflows.
Search memories
Searches stored durable user memories before creating, updating, or deleting entries to find relevant or duplicate memories.