Skip to main content
Glama

assess_archive_project_to_collection

Move a project to a specified collection for organization within the addTaskManager MCP Server. Requires project and collection record names for structured archiving.

Instructions

Archive a project to a collection.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
collectionRecordNameYesRecord name of the collection
projectRecordNameYesRecord name of the project

Implementation Reference

  • The primary handler function that implements the logic for the 'assess_archive_project_to_collection' tool. It currently provides a mock response simulating the archiving of a project to a collection in CloudKit.
    private async archiveProjectToCollection(projectRecordName: string, collectionRecordName: string) { // Mock archiving project to collection via CloudKit return { content: [{ type: 'text', text: `Project ${projectRecordName} archived to collection ${collectionRecordName}` }] }; }
  • The tool definition in the listTools response, including the input schema for validating arguments: projectRecordName and collectionRecordName.
    { name: 'assess_archive_project_to_collection', description: 'Archive a project to a collection.', inputSchema: { type: 'object', properties: { projectRecordName: { type: 'string', description: 'Record name of the project' }, collectionRecordName: { type: 'string', description: 'Record name of the collection' } }, required: ['projectRecordName', 'collectionRecordName'] }
  • src/index.ts:698-700 (registration)
    The dispatch case in the CallToolRequestSchema handler that routes calls to the archiveProjectToCollection method after validation.
    case 'assess_archive_project_to_collection': this.validateArgs(args, ['projectRecordName', 'collectionRecordName']); return await this.archiveProjectToCollection(args.projectRecordName, args.collectionRecordName);

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