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

mcp-to-work-with-jira

v0.1.5

Published

An MCP server to connect AI agents with Jira.

Readme

mcp-to-work-with-jira

An open-source Model Context Protocol (MCP) server to connect AI agents with your Atlassian Jira instance.

This library allows your AI agent to:

  • Search Tickets: Find issues using JQL (e.g., "bugs assigned to me").
  • Read Tickets: Get detailed information about specific issues.
  • Utilize Skills: Use built-in prompts like summarize_ticket to generate standard reports.

Installation

You can run this directly using npx within your agent's configuration (e.g., in mcp.json or claude_desktop_config.json).

Prerequisites

You need a Jira API Token. Get it here.

Configuration

Add this to your MCP settings file:

{
  "mcpServers": {
    "jira": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-to-work-with-jira",
        "--jira-host=https://your-domain.atlassian.net",
        "[email protected]",
        "--jira-token=your-jira-api-token"
      ]
    }
  }
}

Features

Intelligent Agent Prompts (Skills)

This MCP server provides powerful, multi-phase agent workflows that act as specialized team members:

Features

Intelligent Agent Capabilities

This library provides a set of powerful, interconnected capabilities that work together to streamline your development workflow:

1. Analyze Architecture

  • Pattern Discovery: Automatically detects architectural patterns (MFE, Microservices, Pub/Sub, Monorepo) across your repositories.
  • Strategic Design: Generates comprehensive High-Level Design (HLD) documents with strategic recommendations and battle-tested improvements.
  • Workflow Integration: Designed to work seamlessly with the mcp-to-work-with-github library to discover and analyze repositories accurately.

2. Create Sub-tasks

  • Automated Breakdown: INTELLIGENTLY breaks down the High-Level Design into actionable implementation sub-tasks.
  • Context Aware: Ensures each sub-task has the necessary context from the architectural analysis.
  • Jira Integration: Directly creates sub-tasks in Jira linked to the parent feature ticket.

3. Implement Feature

  • Adaptive Workflow: Adapts to ANY tech stack and discovered testing standards (e.g., Browser testing vs Unit tests).
  • Cross-Task Awareness: Smartly explores sibling sub-tasks (e.g., checking Backend tasks while working on Frontend) to reuse schemas, types, and endpoints.
  • Design Discovery: Automatically finds and analyzes design files (Figma, wireframes) from Jira attachments to guide implementation.

4. Fix Bug

  • Root Cause Analysis: Deep dives into the codebase to understand WHY a bug exists, not just where.
  • Impact Analysis: proactively checks for similar bugs and potential regressions across the system.
  • Adaptive Testing: Automatically discovers the correct testing approach for the specific repository to verify fixes.

5. Generate Rules

  • Codebase Analysis: Deeply analyzes your workspace structure, tech stack, and architectural patterns.
  • Knowledge Extraction: Extracts actual coding standards, naming conventions, and common workflows directly from your existing code.
  • AI-Native Documentation: Generates a concise, practical RULES.md file that serves as the de-facto standard for AI agents to understand and contribute to your codebase effectively.

Core Tools

  • jira_search: Search for tickets using JQL.
  • jira_get_issue: Get detailed ticket info (including sub-tasks, attachments, and parent links).
  • jira_add_comment: specific tool to add comment to the ticket.
  • jira_create_subtask: Create sub-tasks for implementation breakdown.

Development

This project follows strict Agent Rules defined in RULES.md.

  1. Clone: git clone ...
  2. Install: npm install
  3. Build: npm run build
  4. Dev: npm run start -- --jira-host=...

License

MIT