Skip to main content
Glama

all the tools

MCP Task Manager Server_addTask

Add a new task to a specified project by providing a description and project ID. Optionally include dependencies, priority, and initial status to organize task workflow effectively.

Instructions

Adds a new task to a specified project within the Task Management Server. Requires the project ID and a description for the task. Optionally accepts a list of dependency task IDs, a priority level, and an initial status. Returns the full details of the newly created task upon success.

Input Schema

NameRequiredDescriptionDefault
dependenciesNoAn optional list of task IDs (strings) that must be completed before this task can start (max 50).
descriptionYesThe textual description of the task to be performed (1-1024 characters).
priorityNoOptional task priority. Defaults to 'medium' if not specified.medium
project_idYesThe unique identifier (UUID) of the project to add the task to. This project must already exist.
statusNoOptional initial status of the task. Defaults to 'todo' if not specified.todo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "dependencies": { "description": "An optional list of task IDs (strings) that must be completed before this task can start (max 50).", "items": { "description": "A task ID that this new task depends on.", "type": "string" }, "maxItems": 50, "type": "array" }, "description": { "description": "The textual description of the task to be performed (1-1024 characters).", "maxLength": 1024, "minLength": 1, "type": "string" }, "priority": { "default": "medium", "description": "Optional task priority. Defaults to 'medium' if not specified.", "enum": [ "high", "medium", "low" ], "type": "string" }, "project_id": { "description": "The unique identifier (UUID) of the project to add the task to. This project must already exist.", "format": "uuid", "type": "string" }, "status": { "default": "todo", "description": "Optional initial status of the task. Defaults to 'todo' if not specified.", "enum": [ "todo", "in-progress", "review", "done" ], "type": "string" } }, "required": [ "project_id", "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/SecretiveShell/MCP-allthetools'

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