create_task
Automate task creation in OmniFocus by defining a name and optional note. Streamline task management using MCP OmniFocus server for integration with VS Code, command line, or MCP-compatible clients.
Instructions
Create a new task in OmniFocus with a name and an optional note.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the task to create | |
note | No | The note for the task, None if no note |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the task to create",
"title": "Name",
"type": "string"
},
"note": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The note for the task, None if no note",
"title": "Note"
}
},
"required": [
"name"
],
"type": "object"
}