tasks_create
tasks_create
Add a task. Assign it to the agent and it can pick the task up itself
Free. This one only touches this instance's own storage, so there is nothing to charge for.
Runs on Tasks — What is to be done: a list you keep, and work you can hand to the agent.
Arguments
| Name | Type | What it is |
|---|---|---|
title* | string | What is to be done |
detail | string | Anything the doer needs to know: context, links, constraints |
assignee | string | me (default) or agent — assign to the agent and it can pick the task up |
due | string | Optional deadline, RFC3339 or 2006-01-02 15:04 |
Calling it
Three doors onto the same method. MCP is what an agent speaks, REST is what a program speaks, and the answer is identical.
{"id":1,"jsonrpc":"2.0","method":"tools/call","params":{"arguments":{"title":"title"},"name":"tasks_create"}}Try it in the playground.


