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

@denvermullets/jait

v1.2.0

Published

MCP server for Just Another Issue Tracker

Readme

Install

Install the published package from npm — no clone, no manual build.

1. Save your API token

Generate an API token in the JAIT web app, then store it locally:

npx -y @denvermullets/jait login <your-api-token>

This writes the token to ~/.config/jait/config.json (mode 0600) so it doesn't have to live in any client settings file.

2. Register the MCP server

Claude Code (recommended):

# just in 1 project
claude mcp add jait -- npx -y @denvermullets/jait
# globally
claude mcp add -s user jait -- npx -y @denvermullets/jait

Claude Desktop / Cursor / other clients:

{
  "mcpServers": {
    "jait": {
      "command": "npx",
      "args": ["-y", "@denvermullets/jait"]
    }
  }
}

No env block is needed — the token is read from the config file saved in step 1, and the API URL defaults to https://justanotherissuetracker.com.

Logout

npx -y @denvermullets/jait logout

Overrides (optional)

Both defaults can be overridden with environment variables, mostly useful for pointing at staging or localhost during development:

  • MTASKS_API_URL — overrides the default production URL.
  • MTASKS_API_TOKEN — overrides the saved token from jait login.

old notes to remove later:

claude mcp add my-server -- node /absolute/path/to/your/dist/index.js

just have to remember to put

  "mcpServers": {
    "mtasks": {
      "command": "node",
      "args": ["BUILD_FILE_LOCATION"],
      "env": {
        "MTASKS_API_URL": "",
        "MTASKS_API_TOKEN": ""
      }
    }
  }

Release / publish notes (for maintainer)

Publishing a new version to npm. npm version <type> bumps package.json, commits, and tags in one shot — use it after merging to main so the tag points at the merge commit.

# from main, after your PR is merged
git checkout main && git pull

npm version patch   # 1.0.1 → 1.0.2  (bug fixes)
npm version minor   # 1.0.1 → 1.1.0  (new features, backwards compatible)
npm version major   # 1.0.1 → 2.0.0  (breaking changes)

git push && git push --tags
npm publish

If you hand-tagged already (git tag v1.0.1) and then npm publish fails with "cannot publish over previously published versions", it means you forgot to bump package.json. Either edit the version manually and commit, or drop the tag and use npm version as above.

Verify after publish:

npm view @denvermullets/jait
npx -y @denvermullets/jait@latest --help   # sanity check the bin still works