Skip to main content
Glama
GiDanis

copilot-jira-mcp

by GiDanis

🎫 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


Related MCP server: Jira Cloud MCP Server

πŸš€ Quick Start

Prerequisites

Installation

# 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:

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



Made with ❀️ for developers who love automation

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • A MCP server built for developers enabling Git based project management with project and personal…

  • MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.

  • An MCP server that gives your AI access to the source code and docs of all public github repos

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/GiDanis/copilot-jira-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server