Skip to main content
Glama

Divide and Conquer MCP Server

by landicefu

initialize_task

Creates a new task with a detailed description, optional checklist items, and metadata to organize and track progress efficiently within structured workflows.

Instructions

Creates a new task with the specified description and optional initial checklist items.

Input Schema

NameRequiredDescriptionDefault
context_for_all_tasksNoInformation that all tasks in the checklist should include
initial_checklistNoOptional initial checklist items
metadataNoOptional metadata for the task
task_descriptionYesA medium-level detailed description about the whole task

Input Schema (JSON Schema)

{ "properties": { "context_for_all_tasks": { "description": "Information that all tasks in the checklist should include", "type": "string" }, "initial_checklist": { "description": "Optional initial checklist items", "items": { "properties": { "context_and_plan": { "description": "Related information, files the agent should read, and more details from other tasks, as well as a detailed plan for this task", "type": "string" }, "detailed_description": { "description": "A longer description about what we want to achieve with this task", "type": "string" }, "done": { "default": false, "description": "Whether the task is already completed", "type": "boolean" }, "task": { "description": "A short yet comprehensive name for the task", "type": "string" } }, "required": [ "task", "detailed_description" ], "type": "object" }, "type": "array" }, "metadata": { "description": "Optional metadata for the task", "properties": { "estimated_completion_time": { "description": "Estimated completion time (ISO timestamp or duration)", "type": "string" }, "priority": { "description": "Priority level of the task", "enum": [ "high", "medium", "low" ], "type": "string" }, "tags": { "description": "Tags to categorize the task", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "task_description": { "description": "A medium-level detailed description about the whole task", "type": "string" } }, "required": [ "task_description" ], "type": "object" }

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/landicefu/divide-and-conquer-mcp-server'

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