delete_note
Remove a specific note from a request in TaskFlow MCP by providing the 'requestId' and 'noteId'. Helps manage and organize task-related details effectively.
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"
}