Skip to main content
Glama
maystar

Super Productivity REST MCP

by maystar

Create a task

sp_task_create

Create a new task with title, due dates, project, tags, and time estimates, or add it as a subtask of an existing task.

Instructions

Creates a new task. A subtask (parentId set) inherits the parent's project and cannot have its own tags.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
notesNo
titleYes
dueDayNoYYYY-MM-DD
isDoneNo
tagIdsNo
parentIdNo
plannedAtNoUnix timestamp, ms
projectIdNo
timeSpentNoMilliseconds
deadlineDayNoYYYY-MM-DD, mutually exclusive with deadlineWithTime
dueWithTimeNoUnix timestamp, ms
timeEstimateNoMilliseconds
deadlineRemindAtNo
deadlineWithTimeNoUnix timestamp, ms, mutually exclusive with deadlineDay

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full behavioral burden. It does disclose two important nontrivial behaviors: subtasks inherit the parent's project and cannot have their own tags. However, it does not mention response behavior, validation effects, or what happens with conflicting fields like projectId and parentId.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler. The core action is front-loaded, and the subtask exception is stated as a single concise rule. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 14-parameter creation tool with no annotations and no output schema, the description is thin. It covers the special subtask case but omits broad guidance on required fields, defaults, mutually exclusive date fields, or what the tool returns after creation. An agent would need to infer a significant amount from the schema alone.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is only 50%, so the description must add parameter meaning. It does add valuable semantics for parentId and tagIds by explaining subtask inheritance and tag restrictions. But most other parameters, including projectId, dueWithTime, and timeEstimate, receive no additional explanation beyond their schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Creates a new task', a specific verb and resource that clearly identifies the tool's function. It also adds a distinguishing constraint about subtasks, which helps separate it from sibling tools like sp_task_update and sp_task_archive.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage: use this tool when a task needs to be created. However, it does not explicitly contrast it with sibling tools or state when an alternative like sp_task_update or sp_task_start would be more appropriate. The subtask rule provides some context but no direct selection guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.