add_note
Adds task-specific notes to enhance context and track progress in the Divide and Conquer MCP Server, ensuring clarity and organized task management.
Instructions
Adds a note to the task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content of the note |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The content of the note",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}