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

@outputty/tasks-mcp

v0.21.0

Published

outputty's task tracker as an MCP server and a library: a local task graph synced two-way to GitHub Issues and Projects.

Readme

@outputty/tasks-mcp

A dependency-aware task tracker for coding agents: an MCP server, a CLI, and a library over one task graph that is mirrored two-way into GitHub — one issue per task, field:value labels for its execution properties, and a Projects v2 kanban board.

The graph holds two altitudes. Tasks are units of work with dependencies, scope, and a build brief. Targets are roadmap rows that group them, and their progress is counted from the tasks rather than typed by anyone. list_ready answers what can be worked right now, ranked at both altitudes.

Requirements

  • Node 18 or newer.
  • A git repository with a github.com origin remote.
  • A GitHub token: GITHUB_TOKEN, GH_TOKEN, or a logged-in gh CLI. For the kanban board, grant the project scope once with gh auth refresh -s project; without it tasks still land as issues.

Install

Nothing to clone. Register the server in your project's .mcp.json and your MCP client launches it on demand:

{
  "mcpServers": {
    "tasks": {
      "command": "npx",
      "args": ["-y", "@outputty/tasks-mcp", "--sync-interval", "60"]
    }
  }
}

Or drive the same graph from a shell:

npm install -g @outputty/tasks-mcp

First run

From inside the repository you want to track:

$ tasks-mcp add order-schema --title "Give an order a stable export shape" --scope src/orders
{
  "id": "order-schema",
  "title": "Give an order a stable export shape",
  "status": "open",
  "deps": [],
  "scope": [
    "src/orders"
  ]
}

That wrote the task to a local cache and opened a GitHub issue for it. Ask what can be worked:

$ tasks-mcp ready
[
  "order-schema"
]

Documentation

Tutorial — start here

  • Your first task graph — build a target and two tasks in a throwaway repository, and watch the queue move.

How-to guides

Reference

  • MCP tools — all twenty tools, their arguments, and their results.
  • CLI — every subcommand, flag, and printed shape.
  • Task record — the fields, their defaults, and where each one lives on GitHub.
  • Configuration — the settings, the four layers, the files, and the credentials.

Explanation

  • The two altitudes — why targets and tasks share one graph.
  • Claims — why a claim that has gone quiet is reported and never freed.
  • The provider stack — layers, sync rules, and why the store is GitHub Issues.
  • Trails — why a task's decision record is its issue comment thread.

License

MIT