Search pursuit comments MCP tool
Searches GovTribe pursuit discussion comments and returns comment records with message, discussion, pursuit, pipeline, and stage context.
- MCP tool name:
Search_Pursuit_Comments - Data type: Comment data type
- Returns: Comment 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 retrieve comments after resolving a pursuit discussion. Use comment_ids when you already have exact comment IDs.
Find comments inside a pursuit discussion
{
"tool": "Search_Pursuit_Discussions",
"arguments": {
"pursuit_ids": [
"<pursuit_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"comments_count"
]
}
}{
"tool": "Search_Pursuit_Comments",
"arguments": {
"pursuit_ids": [
"<pursuit_govtribe_id>"
],
"discussion_ids": [
"<discussion_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"message",
"discussion",
"creator",
"created_at"
]
}
}Resolve comments by known IDs
{
"tool": "Search_Pursuit_Comments",
"arguments": {
"comment_ids": [
"<comment_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"message",
"discussion",
"pursuit"
]
}
}Related articles
- Comment MCP response: Review the response shape returned by this tool.
- Comment 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.