Skip to main content
Glama

Jira Server MCP

자체 호스팅 Jira Server / Data Center용 제로 의존성 MCP 서버 — Jira **8.x(8.14 미만 포함)**에서 동작합니다 (Personal Access Token 불필요).

Python 표준 라이브러리만으로 구현한 제로 의존성 Jira Server / Data Center MCP 서버입니다. pip install로 타사 패키지를 설치할 필요 없이 Python 3.8+만 있으면 실행할 수 있습니다.

왜 필요한가

  • Atlassian 공식 MCP는 Jira Cloud만 지원하며, 온프레미스 배포는 지원하지 않습니다

  • 널리 쓰이는 오픈소스 mcp-atlassian은 Personal Access Token (PAT)에 의존하므로 Jira Server **8.14+**가 필요합니다

  • 많은 기업이 여전히 8.13 이하 버전을 사용 중이며, PAT가 없어 Basic Auth(사용자 이름 + 비밀번호)만 사용할 수 있습니다

  • 본 서버는 Basic Auth와 PAT를 모두 지원하여 8.x 전 버전을 포괄합니다

Related MCP server: jira-mcp

제공 도구

도구

기능

jira_whoami

로그인 검증, 현재 계정 확인

jira_get_projects

접근 가능한 프로젝트 목록

jira_search_issues

JQL 검색

jira_get_issue

요구사항/Bug 상세 조회

jira_create_issue

Jira 생성

jira_update_issue

제목/설명/우선순위/라벨 수정

jira_add_comment

댓글 추가

jira_get_transitions

현재 실행 가능한 상태 전이 조회

jira_transition_issue

상태 전이 실행

jira_assign_issue

담당자 변경

환경 변수

변수

필수

설명

JIRA_BASE_URL

Jira 주소, 예: https://jira.yourcompany.com

JIRA_USERNAME

Basic Auth 필수

Jira 사용자 이름

JIRA_PASSWORD

Basic Auth 필수

Jira 비밀번호

JIRA_TOKEN

PAT 사용 시

Personal Access Token(8.14+), 설정 시 우선 사용

JIRA_SSL_VERIFY

아니요

기본값 true, 자체 서명 인증서 오류 시 false로 설정

JIRA_TIMEOUT

아니요

요청 타임아웃(초), 기본값 30

인증 방식: JIRA_TOKEN이 설정되어 있으면 Bearer Token(PAT)을 사용하고, 그렇지 않으면 JIRA_USERNAME + JIRA_PASSWORD로 Basic Auth를 수행합니다.

설치 및 실행

다음 세 가지 방법 중 하나를 선택하세요:

# 方式一:pipx 安装(推荐,全局可用 jira-server-mcp 命令)
pipx install git+https://github.com/zhao1749501038/jira-server-mcp

# 方式二:uvx 直接运行(不落盘)
uvx --from git+https://github.com/zhao1749501038/jira-server-mcp jira-server-mcp

# 方式三:直接运行源码(零依赖,连 pip 都不用)
git clone https://github.com/zhao1749501038/jira-server-mcp
python3 jira-server-mcp/jira_mcp_server.py

각 MCP 클라이언트 연동

WorkBuddy

~/.workbuddy/mcp.json:

{
  "mcpServers": {
    "jira": {
      "command": "/usr/bin/python3",
      "args": ["/path/to/jira_mcp_server.py"],
      "env": {
        "JIRA_BASE_URL": "https://jira.yourcompany.com",
        "JIRA_USERNAME": "your-username",
        "JIRA_PASSWORD": "your-password"
      }
    }
  }
}

Claude Code

claude mcp add --scope user jira \
  --env JIRA_BASE_URL=https://jira.yourcompany.com \
  --env JIRA_USERNAME=your-username --env JIRA_PASSWORD=your-password \
  -- /usr/bin/python3 /path/to/jira_mcp_server.py

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "jira": {
      "command": "/usr/bin/python3",
      "args": ["/path/to/jira_mcp_server.py"],
      "env": {
        "JIRA_BASE_URL": "https://jira.yourcompany.com",
        "JIRA_USERNAME": "your-username",
        "JIRA_PASSWORD": "your-password"
      }
    }
  }
}

Cursor

~/.cursor/mcp.json, 작성 방법은 Claude Desktop과 동일합니다.

Codex

~/.codex/config.toml:

[mcp_servers.jira]
command = "/usr/bin/python3"
args = ["/path/to/jira_mcp_server.py"]
env = { JIRA_BASE_URL = "https://jira.yourcompany.com", JIRA_USERNAME = "your-username", JIRA_PASSWORD = "your-password" }

보안 안내

  • 자격 증명이 클라이언트 설정에 평문으로 저장되므로 Git에 커밋하지 마세요. 전용 Bot 계정을 사용하고 최소 권한으로 제한하는 것을 권장합니다(조회/생성/편집/댓글/상태 전이/담당자 지정만 허용, 삭제 및 시스템 관리 권한은 부여하지 않음).

  • 여러 명이 공유해야 한다면 각자 비밀번호를 저장하는 대신 서버를 HTTP MCP Server로 배포하고 통합 인증을 적용하는 것을 권장합니다.

License

MIT

A
license - permissive license
Not graded
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.

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    An MCP server for interacting with self-hosted Jira instances using Personal Access Token (PAT) authentication. It enables users to perform CRUD operations on issues, search with JQL, manage comments, and list projects through the Jira REST API.
    12
    309
    10
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    A local MCP server that wraps the Jira REST API v3, enabling issue management, searching, commenting, and transitions for openmrs.atlassian.net via Basic Auth.
    1
  • F
    license
    B
    quality
    B
    maintenance
    Small MCP server for connecting to enterprise Jira using a personal access token. It enables issue operations, project listing, JQL searches, and attachment handling.
    17
  • A
    license
    A
    quality
    B
    maintenance
    MCP server for Jira Server/Data Center that enables issue retrieval, JQL search, comment posting, and Tempo worklog queries via the atlassian-python-api.
    19
    MIT

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 JFrog, providing tools for development and artifact management.

  • An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform

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/zhao1749501038/jira-server-mcp'

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