Task MCP response
MCP tool response payload returned when agents retrieve GovTribe task records through MCP tools.
- Data type: Task data type
- Returned by: Search tasks MCP tool; Create task MCP tool; Update task MCP tool
Fields
| Field | Type | Attribute |
|---|---|---|
govtribe_id | string | GovTribe ID attribute |
govtribe_ai_summary | string | GovTribe AI summary attribute |
govtribe_type | string | GovTribe type attribute |
govtribe_url | string | GovTribe URL attribute |
name | string | Name attribute |
description | string | Description attribute |
comment | string | Comment attribute |
due_date | string | Due date attribute |
past_due | boolean | Past due attribute |
due_soon | boolean | Due soon attribute |
priority | string | Priority attribute |
completed_at | string | Completed at attribute |
reopened_at | string | Reopened at attribute |
created_at | string | Created at attribute |
updated_at | string | Updated at attribute |
owner | relationship object | Owner attribute |
creator | relationship object | Creator attribute |
pipeline | relationship object | Pipeline attribute |
pursuit | relationship object | Pursuit attribute |
stage | relationship object | Stage attribute |
tags | relationship object array | Tags attribute |
Relationship Returns
| Field | Returns |
|---|---|
owner | User MCP response |
creator | User MCP response |
pipeline | Pipeline MCP response |
pursuit | Pursuit MCP response |
stage | Stage MCP response |
tags | Tag MCP response array |
Example
{
"comment": "Review the opportunity requirements and prepare next steps.",
"completed_at": null,
"created_at": "2026-01-15T14:00:00Z",
"creator": {
"govtribe_id": "CREATOR_ID",
"govtribe_type": "creator",
"govtribe_url": "https://govtribe.com/creator/CREATOR_ID",
"name": "Creator"
},
"description": "Representative description text.",
"due_date": "2024-09-18T07:00:00Z",
"due_soon": false,
"govtribe_ai_summary": "Representative AI-generated summary of the record and surrounding context.",
"govtribe_id": "TASK_ID",
"govtribe_type": "task",
"govtribe_url": "https://govtribe.com/workspace/WORKSPACE_ID/task/TASK_ID",
"name": "Example Task",
"owner": {
"govtribe_id": "USER_ID",
"govtribe_type": "user",
"name": "Record Owner"
},
"past_due": false,
"pipeline": {
"govtribe_id": "PIPELINE_ID",
"govtribe_type": "pipeline",
"govtribe_url": "https://govtribe.com/pipelines/PIPELINE_ID",
"name": "Business Development Pipeline"
},
"priority": "Normal",
"pursuit": {
"govtribe_id": "PURSUIT_ID",
"govtribe_type": "pursuit",
"govtribe_url": "https://govtribe.com/pursuits/PURSUIT_ID",
"name": "Modernization Pursuit"
},
"reopened_at": null,
"stage": {
"govtribe_id": "STAGE_ID",
"govtribe_type": "stage",
"govtribe_url": "https://govtribe.com/stages/STAGE_ID",
"name": "Qualified"
},
"tags": [
{
"background_color": "#2f855a",
"govtribe_id": "TAG_ID",
"govtribe_type": "tag",
"name": "Proposal ready"
}
],
"updated_at": "2024-09-16T23:22:47Z"
}