assess_remove_task_from_idea
Remove a specific task from an idea in the Assess realm using the addTaskManager MCP Server. Ensure task-idea associations are updated accurately within the ADD framework workflow.
Instructions
Remove a task from an idea in Assess realm.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ideaRecordName | Yes | Record name of the idea | |
taskRecordName | Yes | Record name of the task |
Input Schema (JSON Schema)
{
"properties": {
"ideaRecordName": {
"description": "Record name of the idea",
"type": "string"
},
"taskRecordName": {
"description": "Record name of the task",
"type": "string"
}
},
"required": [
"taskRecordName",
"ideaRecordName"
],
"type": "object"
}