Skip to main content
Glama
NahornyiDoc

Jira MCP Server

by NahornyiDoc

Jira MCP Server

A local MCP server for managing Jira issues. Supports 7 tools: get, create, update, delete, search issues, add and get comments.


Prerequisites


Related MCP server: Jira MCP Server

Installation

Clone the repository

git clone https://github.com/your-repo/jira-mcp.git
cd jira-mcp

Create virtual environment and install dependencies

macOS / Linux

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Windows

python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt

Configuration

macOS / Linux — mcp.json

{
  "servers": {
    "JiraMCP": {
      "type": "stdio",
      "command": "/absolute/path/to/project/.venv/bin/python",
      "args": [
        "/absolute/path/to/project/server.py",
        "--email",       "your@email.com",
        "--token",       "YOUR_API_TOKEN",
        "--url",         "https://your-domain.atlassian.net",
        "--project-key", "DEV"
      ]
    }
  }
}

Windows — mcp.json

{
  "servers": {
    "JiraMCP": {
      "type": "stdio",
      "command": "C:\\absolute\\path\\to\\project\\.venv\\Scripts\\python.exe",
      "args": [
        "C:\\absolute\\path\\to\\project\\server.py",
        "--email",       "your@email.com",
        "--token",       "YOUR_API_TOKEN",
        "--url",         "https://your-domain.atlassian.net",
        "--project-key", "DEV"
      ]
    }
  }
}

Client Setup

GitHub Copilot (VS Code)

  1. Open VS Code

  2. Create .vscode/mcp.json in your project root

  3. Paste the configuration above (macOS or Windows)

  4. Open GitHub Copilot Chat → Agent mode

  5. Type #JiraMCP to attach the server context

  6. Verify: you should see 5 tools (or 7 tools) discovered in the output log

Quick check in VS Code Output:

[info] Discovered 7 tools

Claude Code (CLI)

Add the server to your Claude Code config:

macOS / Linux

claude mcp add jira-mcp \
  /absolute/path/to/.venv/bin/python \
  /absolute/path/to/server.py \
  --email your@email.com \
  --token YOUR_API_TOKEN \
  --url https://your-domain.atlassian.net \
  --project-key DEV

Windows

claude mcp add jira-mcp ^
  C:\path\to\.venv\Scripts\python.exe ^
  C:\path\to\server.py ^
  --email your@email.com ^
  --token YOUR_API_TOKEN ^
  --url https://your-domain.atlassian.net ^
  --project-key DEV

Or manually edit ~/.claude/mcp.json:

{
  "mcpServers": {
    "jira-mcp": {
      "command": "/absolute/path/to/.venv/bin/python",
      "args": [
        "/absolute/path/to/server.py",
        "--email",       "your@email.com",
        "--token",       "YOUR_API_TOKEN",
        "--url",         "https://your-domain.atlassian.net",
        "--project-key", "DEV"
      ]
    }
  }
}

Verify connection:

claude mcp list

Available Tools

Tool

Description

Read Only

Destructive

get_issue

Get issue details by key

create_issue

Create a new issue

update_issue

Update summary or description

delete_issue

Permanently delete an issue

search_issues

Search using JQL

add_comment

Add a comment to an issue

get_comments

Get all comments for an issue


Usage Examples

get issue DEV-1

create issue with summary "Login button broken" type Bug

update issue DEV-1 summary "Login button broken on mobile"

search issues in project DEV where status is Open order by created DESC

add comment to DEV-1 "Reproduced on iOS 17, cannot reproduce on Android"

get all comments for DEV-1

delete issue DEV-5

F
license - not found
-
quality - not tested
B
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.

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/NahornyiDoc/DemoMcp'

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