Skip to main content
Glama
dragosroua

addTaskManager MCP Server

by dragosroua

assess_remove_task_from_project

Remove a task from a project in the Assess realm to manage task organization and project structure.

Instructions

Remove a task from a project in Assess realm.

Input Schema

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

Implementation Reference

  • src/index.ts:378-388 (registration)
    Tool registration in ListToolsRequestSchema including name, description, and input schema definition.
      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)
    Handler dispatch in CallToolRequestSchema switch statement that validates arguments and calls the removeTaskFromProject method.
    case 'assess_remove_task_from_project':
      this.validateArgs(args, ['taskRecordName', 'projectRecordName']);
      return await this.removeTaskFromProject(args.taskRecordName, args.projectRecordName);
  • The main handler function implementing the tool logic. Currently a mock that returns a success message; in production would interact with CloudKitService to update references.
    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}` }] };
    }

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