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

@andrekurait/jira-mcp-skill

v1.0.5

Published

One-command installer for mcp-atlassian with project context - works with Kiro, Claude, Cursor

Readme

Jira MCP Skill

npm version npm downloads GitHub release License: MIT

One-command installer for mcp-atlassian that configures Jira/Confluence integration for AI coding agents.

Supported Agents: Kiro CLI • Claude Desktop • Cursor


⚡ Quick Start

npx @andrekurait/jira-mcp-skill

You'll be prompted for your Jira URL, email, and API token.

That's it! Restart your AI agent and start using Jira tools.


✨ Features

| Feature | Description | |---------|-------------| | 🚀 One-command setup | Installs and configures everything automatically | | 🤖 Multi-agent support | Works with Kiro, Claude Desktop, and Cursor | | 📚 Project context | Customizable SKILL.md for project-specific guidance | | 🔄 Auto-updates | Kiro hook notifies you when updates are available | | 🔐 Secure | Credentials stored in agent config, not in code |


📦 What Gets Installed

  1. mcp-atlassian - MCP server providing Jira/Confluence tools
  2. Agent configuration - Auto-configures detected AI agents
  3. Version check hook - (Kiro only) Checks for updates on agent spawn

Agent Config Paths

| Agent | Config Location | |-------|-----------------| | Kiro | ~/.kiro/settings/mcp.json | | Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json | | Cursor | ~/.cursor/mcp.json |


🛠️ Available Tools

Once installed, your AI agent has access to these tools:

Jira Tools

  • jira_search - Execute JQL queries
  • jira_get_issue - Get issue details
  • jira_create_issue - Create new issues
  • jira_update_issue - Update existing issues
  • jira_transition_issue - Change issue status

Confluence Tools

  • confluence_search - Execute CQL queries
  • confluence_get_page - Get page content
  • confluence_create_page - Create new pages
  • confluence_update_page - Update existing pages

🔧 Installation Options

Interactive Mode (Recommended)

npx @andrekurait/jira-mcp-skill

Automatic Mode (CI/CD)

npx @andrekurait/jira-mcp-skill \
  --url https://yourcompany.atlassian.net \
  --email [email protected] \
  --token YOUR_API_TOKEN \
  --project MYPROJECT

With Custom Project Guide

npx @andrekurait/jira-mcp-skill --guide ./my-project-guide.md

CLI Options

| Option | Description | |--------|-------------| | --url | Jira instance URL | | --email | Jira account email | | --token | Jira API token | | --project | Default project key | | --guide | Path to project-specific SKILL.md | | --version, -v | Show version | | --help, -h | Show help |


📖 Customizing for Your Project

Create a SKILL.md file with your project-specific context:

# My Project Jira Guide

## Project Details
- **Key:** MYPROJ
- **Board ID:** 123

## Custom Fields
- Story Points: `customfield_10032`

## Common JQL
- My open issues: `project = MYPROJ AND assignee = currentUser() AND status != Done`

Then install with:

npx @andrekurait/jira-mcp-skill --guide ./SKILL.md

The guide is installed to ~/.jira-mcp-skill/SKILL.md and symlinked to Kiro's steering directory.


🔍 Discovery Commands

Use these to explore your Jira instance:

# List all epics
jira_search("project = MYPROJ AND issuetype = Epic")

# Get project metadata
jira_get_project("MYPROJ")

# Find custom field IDs
jira_get_fields()

# Get active sprints
jira_get_board_sprints("BOARD_ID", state="active")

🐛 Troubleshooting

MCP not loading

Restart your AI agent after installation.

Authentication errors

  1. Verify API token at Atlassian API Tokens
  2. Check email matches your Atlassian account
  3. Ensure URL has no trailing slash

Tools not appearing

Ensure uvx is installed:

curl -LsSf https://astral.sh/uv/install.sh | sh

🤝 Contributing

Contributions welcome! Please open an issue or PR on GitHub.


📄 License

MIT


🙏 Credits