npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

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-mcp

Replace 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