Problem
The server currently exposes list-tasks to read tasks within a project, but there is no way to create a task. Since time entries can be associated with a task (taskId), users have to create tasks manually in the Clockify UI before they can be referenced.
Proposal
Add a create-task tool that creates a new task (activity) within a project via POST workspaces/{workspaceId}/projects/{projectId}/tasks.
Suggested parameters:
workspaceId (required)
projectId (required)
name (required)
assigneeIds (optional)
status — ACTIVE/DONE (optional, defaults to ACTIVE)
This mirrors the existing create-tag tool and complements list-tasks.
Addressed by #10.
Problem
The server currently exposes
list-tasksto read tasks within a project, but there is no way to create a task. Since time entries can be associated with a task (taskId), users have to create tasks manually in the Clockify UI before they can be referenced.Proposal
Add a
create-tasktool that creates a new task (activity) within a project viaPOST workspaces/{workspaceId}/projects/{projectId}/tasks.Suggested parameters:
workspaceId(required)projectId(required)name(required)assigneeIds(optional)status—ACTIVE/DONE(optional, defaults toACTIVE)This mirrors the existing
create-tagtool and complementslist-tasks.Addressed by #10.