Create Tasks
create_tasksCreate tasks, each with optional nested subtasks. Defaults: today, 30 min.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tasks | Yes | Tasks to create |
create_tasksCreate tasks, each with optional nested subtasks. Defaults: today, 30 min.
| Name | Required | Description | Default |
|---|---|---|---|
| tasks | Yes | Tasks to create |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Input schema / properties / tasks / items / properties / date / descriptionPrevious value: -"YYYY-MM-DD (default today)"New value: +"Date"Input schema / properties / tasks / items / properties / estimatedMinutes / descriptionPrevious value: -"Minutes (default 30)"New value: +"Minutes"Input schema / properties / tasks / items / properties / goalId / descriptionPrevious value: -"Goal id to link to"New value: +"Goal"Input schema / properties / tasks / items / properties / parent / descriptionPrevious value: -"Parent task ref — makes this a subtask"New value: +"Parent"Input schema / properties / tasks / items / properties / priority / descriptionPrevious value: -"Priority tier (default important)"New value: +"Priority"Input schema / properties / tasks / items / properties / subtasks / descriptionRemoved value: -"Subtasks to create under this task"Input schema / properties / tasks / items / properties / subtasks / items / properties / estimatedMinutes / descriptionRemoved value: -"Minutes (default 15)"Input schema / properties / tasks / items / properties / subtasks / items / properties / title / descriptionRemoved value: -"Subtask title"Input schema / properties / tasks / items / properties / title / descriptionPrevious value: -"Task title; an embedded URL becomes a link attachment"New value: +"Title"Input schema / properties / tasks / items / properties / date / maxLengthAdded value: +10Input schema / properties / tasks / items / properties / estimatedMinutes / maximumAdded value: +1440Input schema / properties / tasks / items / properties / estimatedMinutes / minimumAdded value: +0Input schema / properties / tasks / items / properties / goalId / maxLengthAdded value: +64Input schema / properties / tasks / items / properties / parent / maxLengthAdded value: +500Input schema / properties / tasks / items / properties / subtasks / items / properties / estimatedMinutes / maximumAdded value: +1440Input schema / properties / tasks / items / properties / subtasks / items / properties / estimatedMinutes / minimumAdded value: +0Input schema / properties / tasks / items / properties / subtasks / items / properties / title / maxLengthAdded value: +500Input schema / properties / tasks / items / properties / subtasks / maxItemsAdded value: +100Input schema / properties / tasks / items / properties / title / maxLengthAdded value: +500Input schema / properties / tasks / maxItemsAdded value: +100Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses non-obvious default behavior: omitted dates default to today and duration defaults to 30 minutes. It also clarifies that nested subtasks are optional, which is useful beyond the raw schema. Annotations already indicate this is a non-read-only, non-idempotent mutation, so the description adds appropriate context without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short, efficient sentences. The primary action is front-loaded, and the defaults are packed into a compact, scannable phrase with no filler or redundant explanation.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter create tool with a fully described schema, the description covers the key behavioral defaults and nested-task capability. A return-value description would be nice, but its absence is not a major gap for a creation endpoint whose schema already documents all inputs and annotations cover safety properties.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 100% schema description coverage, the baseline is 3, but the description adds value by specifying defaults for date and estimatedMinutes and by highlighting the optional subtasks array. The mapping is slightly implicit, but the schema's 'Date' and 'Minutes' descriptions make it reasonably clear.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a concrete operation and resource ('Create tasks') and adds the meaningful scope 'each with optional nested subtasks,' which distinguishes it from sibling tools like update_tasks, delete_tasks, and get_tasks. The defaults also add specificity beyond a mere restatement of the title.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance about when to use this tool versus alternatives such as update_tasks or delete_tasks. The name implies creation, but the description does not state conditions, exclusions, or relationships to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct resource and action: goals, tasks, subtasks, loops, journal, calendar, and stats are cleanly separated. Descriptions include explicit call-order hints (e.g., get_loops before pull_loops) that reduce ambiguity. No two tools appear to do the same thing.
Tool names consistently follow a verb_noun snake_case pattern: create_, get_, update_, delete_, pull_, reorder_, write_. Even non-standard verbs like pull_loops and write_journal fit the same predictable structure, making the API easy to navigate.
Sixteen tools is slightly above the typical well-scoped range, but the coverage justifies it given the multiple domains: goals, tasks, subtasks, loops, journal, calendar, and focus stats. Each tool has a clear purpose, so none feel redundant or padding.
Goals and tasks have full CRUD coverage, and journal read/write plus loop pulling cover important workflows. Minor gaps exist: loops cannot be created, updated, or deleted, and calendar events are read-only, so some agent actions would require workarounds. Overall, the core planning lifecycle is well supported.