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

@supreeth_tp/git-mcp-server

v1.0.17

Published

MCP server that summarizes daily git activity and posts worklogs to JIRA

Downloads

7

Readme

git-mcp-server

MCP server that summarizes daily git activity and generates human-readable worklogs.

Note: the automatic JIRA posting was removed — this project now focuses on producing clear, human-readable daily summaries from git history. You can publish the produced worklog text to JIRA or any other system yourself, or re-add an integration as needed.

Quick start

  1. Copy .env.example to .env and adjust any environment variables you want (for example SINCE or DRY_RUN).
  2. Install deps: npm install or run npm run install-deps.
  3. Start the server (default uses stdio MCP transport): npm start.

Example (dry-run):

DRY_RUN=1 node mcp-server.js

From your MCP client call the worklog/write tool with a ticketId argument.

Package name and publishing

This repository has been prepared for publishing under a scoped package name that you control to avoid npm ownership conflicts:

  • Package name: @supreeth_tp/git-mcp-server

You can either publish the package from your account or distribute the generated tarball.

Publish from your account (recommended):

# Ensure you're logged in as the correct npm user
npm whoami

# Publish scoped package as public
npm publish --access public

Install from a tarball (if you prefer to share the built file):

# from the repo root (example tarball name)
npm install ./supreeth_tp-git-mcp-server-1.0.16.tgz

Notes and customization

  • The cli/generate-worklog.js script can produce the same dry-run summary without running the MCP transport; point it at a repo with --repo or set GIT_WORK_TREE.
  • The time window used for collection is controlled by the SINCE environment variable (default: 1 day ago).
  • The summarizer lives in lib/summarize.js and formats commits and file changes into a human-readable bullet list.

If you want the server to automatically post to JIRA again, I can add a pluggable integration that sends the text to JIRA, Slack, or other APIs behind a config flag.