create_todo
Create and manage user-specific tasks by specifying a title and user ID, enabling structured task tracking and organization.
Instructions
创建待办事项
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | 待办事项标题 | |
userId | Yes | 用户ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"title": {
"description": "待办事项标题",
"type": "string"
},
"userId": {
"description": "用户ID",
"type": "number"
}
},
"required": [
"title",
"userId"
],
"type": "object"
}