Skip to main content
Glama

assess_remove_task_from_project

Remove a task from a project in the Assess realm, ensuring proper organization within the ADD framework. Input task and project record names for precise task management.

Instructions

Remove a task from a project in Assess realm.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectRecordNameYesRecord name of the project
taskRecordNameYesRecord name of the task

Implementation Reference

  • The primary handler function for the 'assess_remove_task_from_project' tool. Currently implemented as a mock that returns a success message. In production, this would fetch the project record, remove the task reference from its 'tasks' array, and save the updated project.
    private async removeTaskFromProject(taskRecordName: string, projectRecordName: string) { // Mock removing task from project via CloudKit return { content: [{ type: 'text', text: `Task ${taskRecordName} removed from project ${projectRecordName}` }] }; }
  • Input schema definition for the tool, specifying required string parameters for task and project record names.
    name: 'assess_remove_task_from_project', description: 'Remove a task from a project in Assess realm.', inputSchema: { type: 'object', properties: { taskRecordName: { type: 'string', description: 'Record name of the task' }, projectRecordName: { type: 'string', description: 'Record name of the project' } }, required: ['taskRecordName', 'projectRecordName'] }
  • src/index.ts:689-691 (registration)
    Registration in the central tool dispatcher (switch statement) that validates arguments and calls the specific handler.
    case 'assess_remove_task_from_project': this.validateArgs(args, ['taskRecordName', 'projectRecordName']); return await this.removeTaskFromProject(args.taskRecordName, args.projectRecordName);

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/dragosroua/addtaskmanager-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server