Skip to main content
Glama

Agentic Tools MCP Server

by Pimzino

create_task

Generate actionable and trackable tasks with dependencies, priorities, and complexity estimation. Organize workflows by breaking projects into a structured hierarchy for efficient management.

Instructions

Transform project goals into actionable, trackable tasks with advanced features including dependencies, priorities, complexity estimation, and workflow management. Build structured workflows that break down complex projects into manageable components with unlimited hierarchy depth.

Input Schema

NameRequiredDescriptionDefault
complexityNoEstimated complexity/effort (1-10, where 10 is most complex)
dependsOnNoArray of task IDs that must be completed before this task
detailsYesDetailed description of what the task involves
estimatedHoursNoEstimated time to complete in hours
nameYesThe name/title of the new task
parentIdNoParent task ID for unlimited nesting (optional - creates top-level task if not specified)
priorityNoTask priority level (1-10, where 10 is highest priority)
projectIdYesThe ID of the project this task belongs to
statusNoInitial task status (defaults to pending)
tagsNoTags for categorization and filtering
workingDirectoryYesThe full absolute path to the working directory where data is stored. MUST be an absolute path, never relative. Windows: "C:\Users\username\project" or "D:\projects\my-app". Unix/Linux/macOS: "/home/username/project" or "/Users/username/project". Do NOT use: ".", "..", "~", "./folder", "../folder" or any relative paths. Ensure the path exists and is accessible before calling this tool. NOTE: When server is started with --claude flag, this parameter is ignored and a global user directory is used instead.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "complexity": { "description": "Estimated complexity/effort (1-10, where 10 is most complex)", "maximum": 10, "minimum": 1, "type": "number" }, "dependsOn": { "description": "Array of task IDs that must be completed before this task", "items": { "type": "string" }, "type": "array" }, "details": { "description": "Detailed description of what the task involves", "type": "string" }, "estimatedHours": { "description": "Estimated time to complete in hours", "minimum": 0, "type": "number" }, "name": { "description": "The name/title of the new task", "type": "string" }, "parentId": { "description": "Parent task ID for unlimited nesting (optional - creates top-level task if not specified)", "type": "string" }, "priority": { "description": "Task priority level (1-10, where 10 is highest priority)", "maximum": 10, "minimum": 1, "type": "number" }, "projectId": { "description": "The ID of the project this task belongs to", "type": "string" }, "status": { "description": "Initial task status (defaults to pending)", "enum": [ "pending", "in-progress", "blocked", "done" ], "type": "string" }, "tags": { "description": "Tags for categorization and filtering", "items": { "type": "string" }, "type": "array" }, "workingDirectory": { "description": "The full absolute path to the working directory where data is stored. MUST be an absolute path, never relative. Windows: \"C:\\Users\\username\\project\" or \"D:\\projects\\my-app\". Unix/Linux/macOS: \"/home/username/project\" or \"/Users/username/project\". Do NOT use: \".\", \"..\", \"~\", \"./folder\", \"../folder\" or any relative paths. Ensure the path exists and is accessible before calling this tool. NOTE: When server is started with --claude flag, this parameter is ignored and a global user directory is used instead.", "type": "string" } }, "required": [ "workingDirectory", "name", "details", "projectId" ], "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/Pimzino/agentic-tools-mcp'

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