Create task MCP tool
Creates a new task in the specified pipeline and pursuit.
- MCP tool name:
Create_Task - Data type: Task data type
- Returns: Task MCP response
- Annotations: Not read only, destructive, not idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP
Examples
Resolve the pipeline, pursuit, and owner before creating the task. Include tag_ids to set workspace tags when the task is created.
Create a task for a teammate to review an opportunity package
{
"tool": "Search_Pursuits",
"arguments": {
"query": "facility modernization",
"fields_to_return": [
"govtribe_id",
"name",
"pipeline",
"stage"
]
}
}{
"tool": "Search_Users",
"arguments": {
"query": "teammate@example.com",
"fields_to_return": [
"govtribe_id",
"name",
"email"
]
}
}{
"tool": "Create_Task",
"arguments": {
"pipeline_id": "<pipeline_govtribe_id>",
"pursuit_id": "<pursuit_govtribe_id>",
"owner_model_id": "<user_govtribe_id>",
"name": "Review solicitation attachments",
"description": "Summarize response requirements, key dates, and missing compliance items.",
"dueDate": "2026-06-15",
"priority": "high",
"tag_ids": [
"<tag_govtribe_id>"
]
}
}Related articles
- Task MCP response: Review the response shape returned by this tool.
- Task 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.
- Source identifiers and record matching: Use GovTribe IDs and source identifiers when passing records between tools.