start_task
Initiate tasks in Buildable projects by specifying a task ID, approach, duration, and notes. Integrates with AI assistants for efficient task management using the Model Context Protocol (MCP).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
approach | No | Optional approach or strategy for the task | |
estimated_duration | No | Estimated duration in minutes | |
notes | No | Optional notes about the task | |
task_id | Yes | The ID of the task to start |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"approach": {
"description": "Optional approach or strategy for the task",
"type": "string"
},
"estimated_duration": {
"description": "Estimated duration in minutes",
"type": "number"
},
"notes": {
"description": "Optional notes about the task",
"type": "string"
},
"task_id": {
"description": "The ID of the task to start",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}