jira-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| JIRA_API_KEY | Yes | Atlassian API token | |
| JIRA_USER_EMAIL | Yes | Atlassian account email | |
| JIRA_INSTANCE_URL | Yes | Jira instance URL, e.g., https://your-domain.atlassian.net |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| jql_searchA | JQL(Jira Query Language)로 이슈를 검색합니다. REST API v3의 POST /search/jql 을 사용합니다. |
| get_issueB | 이슈 ID 또는 키로 이슈 상세 정보를 조회합니다. REST API v3를 사용합니다. |
| create_issueC | 새 이슈를 생성합니다. 프로젝트 키, 이슈 유형, 요약은 필수입니다. |
| update_issueA | 이슈 필드를 수정합니다. description은 ADF 형식 객체입니다. get_issue로 현재 ADF를 확인 후 수정하세요. |
| get_transitionsA | 이슈의 가능한 상태 전환 목록을 조회합니다. transition_issue 호출 전에 이 도구로 전환 ID를 확인하세요. |
| transition_issueA | 이슈 상태를 전환합니다. 먼저 get_transitions로 유효한 전환 ID를 확인하세요. |
| add_commentA | 이슈에 댓글을 추가합니다. 텍스트를 입력하면 ADF 형식으로 자동 변환됩니다. |
| list_projectsA | 접근 가능한 Jira 프로젝트 목록을 조회합니다. |
| get_myselfA | 현재 인증된 사용자 정보를 조회합니다. 계정 ID 확인에 유용합니다. |
| confluence_create_pageB | Confluence에 새 페이지를 생성합니다. Confluence REST API v2를 사용합니다. bodyHtml에는 간단한 HTML(h2, p, ul, li, table)을 사용하세요. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Each tool targets a distinct action or resource: search, get, create, update, transition, comment, projects, and user info are clearly separated. get_transitions and transition_issue are complementary rather than overlapping, with descriptions explicitly guiding the intended workflow.
Most tools follow a clear verb_noun snake_case pattern like get_issue, create_issue, and list_projects. jql_search is a minor outlier (should be search_jql), and confluence_create_page mixes a namespace prefix with the otherwise consistent pattern.
Ten tools is well-scoped for a Jira integration, covering search, issue lifecycle, transitions, comments, projects, and user lookup without unnecessary bloat. The Confluence page creation tool is slightly out of place, but the overall count remains appropriate and manageable.
The core Jira workflow is well covered: search, create, read, update, transition, comment, project listing, and user identity are all present. Minor gaps like deleting issues, managing attachments/links, and Confluence read/update operations are acceptable for a typical Jira automation surface.