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

marktaskdown

v1.0.2

Published

A lightweight CLI for task management based on Markdown files

Readme

MarkTaskDown (mtd)

A lightweight CLI for managing tasks as Markdown files with YAML front-matter.

  • Text-native: Store tasks as simple Markdown files
  • Offline-first: No internet connection required
  • Git-friendly: Track task changes with version control

Installation

# Not yet published to npm
npm install -g marktaskdown

Usage

Initialize Task Directory

mtd init

Creates a /tasks folder in your current directory.

Add a New Task

mtd add <title> [options]

Creates a new task with the specified title and optional description.

Options:

  • -d, --description <description>: Add a description to the task

Example:

mtd add "Implement new feature" --description "Add the ability to mark tasks as done"

List All Tasks

mtd list

Displays a table of all tasks with their status.

Mark Tasks as Done

mtd done [slugs...]

When called without arguments, provides an interactive prompt to select and mark tasks as completed.

When called with task slugs as arguments, marks those specific tasks as done.

Example:

mtd done task-1 task-2

Delete Tasks

mtd delete

Interactive prompt to select and archive tasks.

Architecture

MarkTaskDown follows Domain-Driven Design (DDD) principles with a clean architecture approach. For details on the architecture, see:

Development

This project follows Test-Driven Development (TDD) practices. See docs/README.md for the detailed product requirements and docs/CONTRIBUTING.md for development guidelines.

MCP Server

MarkTaskDown includes a Model Context Protocol (MCP) server that allows LLM applications to interact with your tasks.

What is MCP?

The Model Context Protocol (MCP) is a standard that enables Large Language Models (LLMs) to interact with external tools and resources. With MarkTaskDown's MCP server, LLMs can manage your tasks directly.

Starting the MCP Server

mtd mcp-server

This command starts the MCP server with STDIO transport, allowing LLM applications to interact with your tasks. The server will continue running until you press Ctrl+C.

Available Tools and Resources

The MCP server provides the following tools:

  • initialize-project: Initialize a new MarkTaskDown project
  • create-task: Create a new task
  • set-task-done: Mark a task as done
  • set-task-undone: Mark a task as undone
  • delete-task: Delete a task

And the following resources:

  • tasks://list: Get a list of all tasks
  • tasks://{slug}: Get details of a specific task

For more detailed information about the MCP server, see docs/README.md.

License

MIT