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

tasker-mcp

v1.1.0

Published

CLI + MCP server for Tasker — drive your daily task board (spillover, subtasks, workspaces, reports) from the terminal or an agent like Claude Code. Reads/writes the same tasker.json the web app syncs to.

Readme

tasker-mcp

CLI and local MCP server for Tasker — a personal daily task tracker where unfinished tasks spill over to today. Drive your board from the terminal or from an agent like Claude Code, over the same tasker.json the web app syncs to, so all three stay in sync.

This package ships two binaries: tasker (the CLI) and tasker-mcp (the stdio MCP server). Both bundle their dependencies — no install footprint beyond the package itself.

The data file

Everything reads/writes one JSON file, resolved in this order:

  1. --file <path> (CLI only)
  2. $TASKER_FILE
  3. ~/Tasker/tasker.json — the shared default (auto-created)

Point the web app's folder sync at the same folder and the app, CLI, and MCP are one board. Writes are atomic; the web app picks up external edits live.

CLI

npm i -g tasker-mcp                 # installs the `tasker` command (and `tasker-mcp`)
export TASKER_FILE=~/Tasker/tasker.json

tasker add "Fix KF4-12461" --priority high --when tomorrow
tasker ls                           # today's board (add --json for machine output)
tasker done 1                       # by index, short id, or full id
tasker sub add 1 "Write tests"
tasker ws add "Personal"            # workspaces: ws ls / add / switch / rename / rm
tasker report --range 7
tasker help

Every command accepts --json; errors go to stderr with a non-zero exit code; nothing prompts.

Claude Code (MCP)

claude mcp add tasker -s user -- npx -y tasker-mcp

-s user registers it for every project. It reads ~/Tasker/tasker.json by default; for another folder, append -e TASKER_FILE=/full/path/to/tasker.json.

Then ask Claude: “add ‘review the Q3 doc’ to my Work board, high priority.” The MCP server runs locally on your machine and reads the same file — nothing is hosted. Tools exposed: list_tasks, add_task, complete_task, reopen_task, update_task, move_task, delete_task, add_subtask, toggle_subtask, update_subtask, delete_subtask, list_workspaces, create_workspace, switch_workspace, rename_workspace, report.

License

MIT