Skip to main content
Glama
task-status.js840 B
/** * @typedef {'pending' | 'done' | 'in-progress' | 'review' | 'deferred' | 'cancelled'} TaskStatus */ /** * Task status options list * @type {TaskStatus[]} * @description Defines possible task statuses: * - pending: Task waiting to start * - done: Task completed * - in-progress: Task in progress * - review: Task completed and waiting for review * - deferred: Task postponed or paused * - cancelled: Task cancelled and will not be completed */ export const TASK_STATUS_OPTIONS = [ 'pending', 'done', 'in-progress', 'review', 'deferred', 'cancelled' ]; /** * Check if a given status is a valid task status * @param {string} status - The status to check * @returns {boolean} True if the status is valid, false otherwise */ export function isValidTaskStatus(status) { return TASK_STATUS_OPTIONS.includes(status); }

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/eyaltoledano/claude-task-master'

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