Create pursuit comment MCP tool
Creates a comment in a GovTribe pursuit discussion.
- MCP tool name:
Create_Pursuit_Comment - Data type: Comment data type
- Returns: Comment MCP response
- Annotations: Not read only, destructive, not idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP, GovTribe Compact MCP server
Examples
Resolve the pursuit and discussion first. The supplied discussion_id must belong to the supplied pursuit_id.
Add a comment to a discussion
{
"tool": "Search_Pursuit_Discussions",
"arguments": {
"pursuit_ids": [
"<pursuit_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"pursuit",
"comments_count"
]
}
}{
"tool": "Create_Pursuit_Comment",
"arguments": {
"pursuit_id": "<pursuit_govtribe_id>",
"discussion_id": "<discussion_govtribe_id>",
"message": "Add incumbent questions to the qualification checklist."
}
}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.
- 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.
- Source identifiers and record matching: Use GovTribe IDs and source identifiers when passing records between tools.