cookietech-mcp
v1.2.0
Published
MCP server for CRUD on Cookie People HRM tasks/projects/subtasks/time logs
Readme
cookietech-mcp
MCP server for CRUD on Cookie People HRM tasks/projects/subtasks/time logs, directly from Claude Code.
Install
claude mcp add --scope user cookie-people-tasks \
-e [email protected] -e CP_PASSWORD=yourpass \
-- npx -y cookietech-mcpReplace CP_EMAIL/CP_PASSWORD with your Cookie People login. Restart Claude Code after adding.
Points at https://api.people.cookietechltd.com by default. Override with -e CP_API_URL=... if needed.
Usage
Just ask Claude in plain language:
- "find my tasks"
- "list projects"
- "show tasks in project CookieTech HRM"
- "create a task 'Fix login bug' in project 1, high priority"
- "move task 42 to done"
- "update task 42's due date to 2026-08-15"
- "delete task 42"
- "add a subtask 'write tests' under task 42"
- "log 2 hours on task 42 from 9am to 11am today"
- "show my time entries this week"
Tools
| Tool | Description |
|---|---|
| list_projects | List projects |
| get_project | Get a project by id |
| list_columns | List a project's kanban columns — resolve a column name to a columnId |
| list_employees | List employees — resolve a person's name to an assigneeId |
| list_tasks | List tasks. Defaults to your own tasks; pass all: true for everyone's, or assigneeId for someone else's |
| get_task | Get a task by id |
| create_task | Create a task. Defaults assigneeId to you; pass assigneeId to assign someone else |
| update_task | Update a task (partial fields) |
| move_task | Move a task to another column/status + position (kanban) |
| delete_task | Delete a task by id |
| list_subtasks | List a task's subtasks |
| create_subtask | Add a subtask under a task |
| update_subtask | Update a subtask (partial fields) |
| delete_subtask | Delete a subtask by id |
| list_time_entries | List your time entries, optionally filtered by date/range |
| log_time | Add a manual time log entry against a task (or subtask) |
| update_time_entry | Update a time entry (partial fields) |
| delete_time_entry | Delete a time entry by id |
Uninstall
claude mcp remove cookie-people-tasks