accounting_addCloseTask

WRITE

Add close task.

Parameters

periodIdstringrequired
namestringrequired
taskTypestringrequired
requiredbooleanrequired
assigneeIdstringoptional

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "accounting_addCloseTask",
  "arguments": {
    "periodId": "string",
    "name": "string",
    "taskType": "string",
    "required": true
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "periodId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "taskType": {
      "type": "string"
    },
    "required": {
      "type": "boolean"
    },
    "assigneeId": {
      "type": "string"
    }
  },
  "required": [
    "periodId",
    "name",
    "taskType",
    "required"
  ]
}