Skip to main content
Glama

Task API Server

by milkosten

createTask

Create and manage tasks with specific categories, priorities, and statuses using the Task API Server's standardized interface for streamlined task management.

Input Schema

NameRequiredDescriptionDefault
categoryYesTask category (e.g., 'Development', 'Documentation')
priorityNoTask priority level (defaults to 'medium' if not specified)
statusNoInitial task status (defaults to 'not_started' if not specified)
taskYesThe task description or title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "category": { "description": "Task category (e.g., 'Development', 'Documentation')", "minLength": 1, "type": "string" }, "priority": { "description": "Task priority level (defaults to 'medium' if not specified)", "enum": [ "low", "medium", "high" ], "type": "string" }, "status": { "description": "Initial task status (defaults to 'not_started' if not specified)", "enum": [ "not_started", "started", "done" ], "type": "string" }, "task": { "description": "The task description or title", "minLength": 1, "type": "string" } }, "required": [ "task", "category" ], "type": "object" }

You must be authenticated.

Other Tools from Task API Server

Related Tools

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/milkosten/task-mcp-server'

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