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 🙏

© 2025 – Pkg Stats / Ryan Hefner

mcp-sprint-work-logs

v1.4.3

Published

MCP server for analyzing Jira sprint issues with worklog interpretation errors and Story Points achievement rate and worlogs manipulation

Readme

MCP Sprint Work Logs

MCP server for analyzing Jira sprint issues with worklog interpretation errors and Story Points achievement rate.

Features

  • 📊 Sprint Analysis: Analyze sprint issues for worklog errors and Story Points achievement
  • 📝 Worklog Management: Create, modify, and manage worklogs with LG Electronics format
  • 🔍 Issue Management: Get current sprint issues and manage sprint lifecycle
  • 📋 Story Points Tracking: Track Story Points completion rate and time analysis
  • 🎯 Sprint Operations: Copy issues, create new sprint issues, and close completed sprints

Installation

Prerequisites

  • Node.js 14.0.0 or higher
  • Python 3.9+
  • pip (Python package installer)

Install via npx (Recommended)

npx mcp-sprint-work-logs

Manual Installation

  1. Install the package:
npm install -g mcp-sprint-work-logs
  1. Install Python dependencies:
pip install -r requirements.txt
  1. Configure environment variables in your MCP client:
"mcp-sprint-work-logs": {
    "type": "stdio",
    "command": "npx",
    "args": ["-y", "mcp-sprint-work-logs"],
    "env": {
        "JIRA_URL": "https://your-jira-instance.com/",
        "JIRA_USERNAME": "your-username",
        "JIRA_PASSWORD": "your-password-or-token"
    }
}

Usage

Available Tools

  1. get_current_sprint_issues: Get current sprint issues with filtering
  2. analyze_sprint: Comprehensive sprint analysis with worklog errors and Story Points
  3. get_story_points: Get Story Points information for an issue
  4. create_work_entry: Create worklog with LG Electronics format
  5. get_work_logs: Get all worklogs for an issue
  6. modify_work_entry: Update existing worklog
  7. remove_work_entry: Delete worklog
  8. copy_sprint_issue: Copy existing issue to next sprint
  9. create_new_sprint_issue: Create new sprint issue
  10. close_sprint_issue: Close completed sprint issue

Sprint Analysis Features

  • Worklog Error Detection: Identifies worklogs that don't follow LG Electronics Work Description format
  • Story Points Achievement: Calculates completion rate based on planned vs actual hours (1SP = 4 hours)
  • Sprint Period Analysis: Provides sprint timeline and duration information
  • Comprehensive Reporting: Detailed analysis with actionable insights

Examples

Analyze Sprint

await analyze_sprint("TVPLAT-677921");

Get Current Sprint Issues

await get_current_sprint_issues();

Copy Issue to Next Sprint

await copy_sprint_issue("TVPLAT-700666", "jaehyung1.lee");

Create New Sprint Issue

await create_new_sprint_issue("jaehyung1.lee", "기타업무", "운영, 회의, 교육");

Development

  1. Clone the repository
  2. Install dependencies: npm install
  3. Install Python dependencies: pip install -r requirements.txt
  4. Run: npm start

License

MIT