delete_note
Remove unwanted or outdated notes from a request using the specified 'requestId' and 'noteId' to maintain clarity and organization in task management workflows with TaskFlow MCP.
Instructions
Delete a note from a request.
Provide the 'requestId' and 'noteId' of the note to delete.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
noteId | Yes | ||
requestId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"noteId": {
"type": "string"
},
"requestId": {
"type": "string"
}
},
"required": [
"requestId",
"noteId"
],
"type": "object"
}