Search pursuit discussions MCP tool
Searches GovTribe pursuit discussions and returns discussion records with messages, owners, pursuit context, files, and comment counts.
- MCP tool name:
Search_Pursuit_Discussions - Data type: Discussion data type
- Returns: Discussion MCP response
- Search modes: Keyword
- Annotations: Read only, not destructive, idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP, GovTribe Compact MCP server (through Invoke Search Tool)
Examples
Use this tool to find discussion threads after resolving the pursuit that owns them. Use discussion_ids when you already have exact discussion IDs.
Find discussions on a pursuit
{
"tool": "Search_Pursuits",
"arguments": {
"query": "facility modernization capture",
"fields_to_return": [
"govtribe_id",
"name",
"pipeline",
"stage"
]
}
}{
"tool": "Search_Pursuit_Discussions",
"arguments": {
"pursuit_ids": [
"<pursuit_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"message",
"comments_count",
"user_files",
"updated_at"
]
}
}Resolve discussions by known IDs
{
"tool": "Search_Pursuit_Discussions",
"arguments": {
"discussion_ids": [
"<discussion_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"message",
"pursuit",
"comments_count"
]
}
}Related articles
- Discussion MCP response: Review the response shape returned by this tool.
- Discussion 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.
- MCP servers: Review where this MCP tool can be used.
- Invoke Search Tool MCP tool: Review where this MCP tool can be used.
- Source identifiers and record matching: Use GovTribe IDs and source identifiers when passing records between tools.