GovTribe

Create task MCP tool

Creates a new task in the specified pipeline and pursuit.

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>"
    ]
  }
}