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

copilot-jira-mcp

v1.0.0

Published

Official MCP Server for Jira integration with GitHub Copilot CLI

Readme

🎫 Copilot Jira MCP Server

npm version License: MIT Node.js Version

Official MCP (Model Context Protocol) server for seamless Jira integration with GitHub Copilot CLI

Interact with Jira issues, search tickets, and manage your workflow directly from GitHub Copilot CLI using natural language!


✨ Features

  • 🔍 Smart Search - Search Jira tickets using JQL or natural language
  • 📝 Issue Details - Get comprehensive information about any ticket
  • 💬 Comments - Read and analyze issue comments
  • 🔗 Subtasks & Links - Navigate issue hierarchies
  • 📎 Attachments - List and access issue attachments
  • 👤 My Issues - Quick access to your assigned tickets
  • 🚀 Fast & Lightweight - Minimal dependencies, maximum performance
  • 🔐 Secure - Credentials stored safely in environment variables
  • 🌍 Universal - Works with any Jira instance (Cloud or Server)
  • 🎯 AI-Powered - Let Copilot understand and query your Jira naturally

🚀 Quick Start

Prerequisites

Installation

Option 1: NPM (Recommended)

# Install globally
npm install -g copilot-jira-mcp

# Run interactive setup
jira-mcp setup

# Register with Copilot
jira-mcp register

Option 2: From Source

# Clone repository
git clone https://github.com/gdanise/copilot-jira-mcp.git
cd copilot-jira-mcp

# Install dependencies
npm install

# Run setup wizard
npm run setup

# Register with Copilot
npm run register

Configuration

The setup wizard will guide you through:

  1. Jira URL - Your Jira instance URL (e.g., https://your-company.atlassian.net)
  2. Email - Your Jira account email
  3. API Token - Generate at Atlassian API Tokens

Credentials are stored securely in environment variables:

  • JIRA_URL
  • JIRA_EMAIL
  • JIRA_API_TOKEN

📖 Usage

Once installed, simply open Copilot and use natural language:

copilot

Example Queries

Get your tickets:

> Show me my assigned Jira tickets

Search issues:

> Search Jira for open bugs in project IIAB
> Find all high priority tickets in sprint 23
> Show me tickets updated in the last week

Get ticket details:

> Get details for IIAB-12345
> Show me comments on ticket PROJ-789
> List subtasks for IIAB-456

Advanced JQL:

> Search Jira with JQL: project = IIAB AND status = "In Progress"

🛠️ Available Tools

The MCP server exposes these tools to Copilot:

| Tool | Description | |------|-------------| | jira_search | Search issues using JQL | | jira_get_issue | Get detailed ticket information | | jira_get_comments | Retrieve all comments | | jira_get_subtasks | List all subtasks | | jira_get_attachments | List attachments | | jira_get_my_issues | Get your assigned tickets |


🔐 Security

Your credentials are NEVER committed or shared!

✅ Stored in environment variables
.gitignore prevents accidental commits
✅ No plaintext storage
✅ API tokens can be revoked anytime

Best Practices:

  • Generate dedicated API tokens (don't reuse)
  • Revoke tokens when not needed
  • Never share .env files
  • Use different tokens for different machines

See SECURITY.md for complete security guidelines.


📚 Documentation


🔧 Manual Configuration

If you prefer manual setup:

Windows (PowerShell)

# Set environment variables
[Environment]::SetEnvironmentVariable("JIRA_URL", "https://your-company.atlassian.net", "User")
[Environment]::SetEnvironmentVariable("JIRA_EMAIL", "[email protected]", "User")
[Environment]::SetEnvironmentVariable("JIRA_API_TOKEN", "your-token-here", "User")

# Restart terminal

Mac/Linux (Bash/Zsh)

# Add to ~/.bashrc or ~/.zshrc
export JIRA_URL="https://your-company.atlassian.net"
export JIRA_EMAIL="[email protected]"
export JIRA_API_TOKEN="your-token-here"

# Reload shell
source ~/.bashrc  # or ~/.zshrc

Register MCP Server

Edit ~/.copilot/mcp.json:

{
  "mcpServers": {
    "jira": {
      "command": "node",
      "args": ["/path/to/copilot-jira-mcp/src/index.js"],
      "env": {
        "JIRA_URL": "${JIRA_URL}",
        "JIRA_EMAIL": "${JIRA_EMAIL}",
        "JIRA_API_TOKEN": "${JIRA_API_TOKEN}"
      }
    }
  }
}

🐛 Troubleshooting

"Missing Jira configuration" Error

Solution: Run the setup wizard:

npm run setup

"Authentication failed" Error

Causes:

  • Invalid API token
  • Incorrect email
  • Wrong Jira URL

Solution: Regenerate API token and run setup again.

MCP Server Not Found

Solution: Re-register the server:

npm run register

For more help, see Troubleshooting Guide.


🤝 Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

Areas we'd love help with:

  • 🌐 Internationalization
  • 📱 Additional Jira features (transitions, creating tickets, etc.)
  • 🧪 Test coverage
  • 📖 Documentation improvements
  • 🐛 Bug fixes

📜 License

MIT © 2026 Giuseppe Danise

See LICENSE for details.


🙏 Acknowledgments


⭐ Support

If this project helps you, please give it a ⭐ on GitHub!

Issues? Report them here
Questions? Start a discussion


🔗 Links


Made with ❤️ for developers who love automation