Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for seamless Jira integration with GitHub Copilot CLI, allowing natural language queries to search, view, and manage Jira tickets.

README.md

🎫 Copilot Jira MCP Server

![npm version](https://www.npmjs.com/package/copilot-jira-mcp) ![License: MIT](https://opensource.org/licenses/MIT) ![Node.js Version](https://nodejs.org)

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: Install from GitHub (Recommended) ⭐

# Install globally from GitHub
npm install -g git+https://github.com/GiDanis/copilot-jira-mcp.git

# Run interactive setup
npx jira-mcp setup

Option 2: Clone and Install

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

# Install dependencies
npm install

# Run setup wizard
npm run setup

# Register with Copilot
npm run register

Option 3: NPM Package

# Install from NPM
npm install -g copilot-jira-mcp

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", "your.email@company.com", "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="your.email@company.com"
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: ``bash 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: ``bash 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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.