Skip to main content
Glama

@choing.dev/jira-mcp

Jira Cloud & Confluence를 AI 에이전트에서 바로 사용할 수 있게 해주는 MCP (Model Context Protocol) 서버입니다.

Claude, Cursor 등 MCP를 지원하는 AI 도구에서 JQL 검색, 이슈 생성/수정/전환, 댓글 작성, Confluence 페이지 생성까지 자연어로 수행할 수 있습니다.

주요 기능

도구

설명

jql_search

JQL로 이슈 검색 (v3 페이지네이션 지원)

get_issue

이슈 상세 조회

create_issue

이슈 생성 (Task, Bug, Story, Epic 등)

update_issue

이슈 필드 수정 (제목, 설명, 담당자, 라벨 등)

get_transitions

가능한 상태 전환 목록 조회

transition_issue

이슈 상태 전환 (예: To Do → In Progress)

add_comment

이슈에 댓글 추가

list_projects

프로젝트 목록 조회

get_myself

현재 사용자 정보 조회

confluence_create_page

Confluence 페이지 생성

Related MCP server: jiri-mcp

빠른 시작

1. 환경변수 설정

export JIRA_INSTANCE_URL="https://your-domain.atlassian.net"
export JIRA_USER_EMAIL="your-email@example.com"
export JIRA_API_KEY="your-api-token"

API 토큰 발급: Atlassian API 토큰 관리에서 발급받을 수 있습니다.

2. 설치 및 실행

npx @choing.dev/jira-mcp

또는 글로벌 설치:

npm install -g @choing.dev/jira-mcp
jira-mcp

AI 도구 설정

Cursor

.cursor/mcp.json 파일에 추가:

{
  "mcpServers": {
    "jira": {
      "command": "npx",
      "args": ["-y", "@choing.dev/jira-mcp"],
      "env": {
        "JIRA_INSTANCE_URL": "https://your-domain.atlassian.net",
        "JIRA_USER_EMAIL": "your-email@example.com",
        "JIRA_API_KEY": "your-api-token"
      }
    }
  }
}

Claude Desktop

claude_desktop_config.json에 추가:

{
  "mcpServers": {
    "jira": {
      "command": "npx",
      "args": ["-y", "@choing.dev/jira-mcp"],
      "env": {
        "JIRA_INSTANCE_URL": "https://your-domain.atlassian.net",
        "JIRA_USER_EMAIL": "your-email@example.com",
        "JIRA_API_KEY": "your-api-token"
      }
    }
  }
}

도구 상세

JQL 쿼리로 이슈를 검색합니다. Jira REST API v3의 POST /search/jql을 사용합니다.

"내 프로젝트의 진행 중인 버그를 검색해줘"
→ jql_search { jql: "project = PROJ AND status = 'In Progress' AND issuetype = Bug" }

파라미터

필수

설명

jql

O

JQL 쿼리 문자열

maxResults

최대 결과 수 (기본: 50)

fields

반환할 필드 목록

nextPageToken

다음 페이지 토큰

expand

추가 정보 (changelog, renderedFields 등)

get_issue

이슈 키 또는 ID로 상세 정보를 조회합니다.

"PROJ-123 이슈 내용 보여줘"
→ get_issue { issueIdOrKey: "PROJ-123" }

create_issue

새 이슈를 생성합니다.

"PROJ 프로젝트에 로그인 버그 이슈 만들어줘"
→ create_issue { projectKey: "PROJ", issueType: "Bug", summary: "로그인 실패 버그" }

파라미터

필수

설명

projectKey

O

프로젝트 키

issueType

O

이슈 유형 (Task, Bug, Story, Epic)

summary

O

이슈 제목

description

이슈 설명 (텍스트 → ADF 자동 변환)

assignee

담당자 계정 ID

labels

라벨 목록

priority

우선순위 (Highest, High, Medium, Low, Lowest)

parentKey

상위 이슈 키 (하위 작업 생성 시)

customFields

커스텀 필드 객체

update_issue

이슈 필드를 수정합니다. description은 ADF(Atlassian Document Format) 객체입니다.

"PROJ-123 제목을 '수정된 제목'으로 바꿔줘"
→ update_issue { issueIdOrKey: "PROJ-123", summary: "수정된 제목" }

get_transitions / transition_issue

이슈 상태를 전환합니다. 먼저 get_transitions로 가능한 전환을 확인한 후 transition_issue를 호출합니다.

"PROJ-123을 In Progress로 변경해줘"
→ get_transitions { issueIdOrKey: "PROJ-123" }
→ transition_issue { issueIdOrKey: "PROJ-123", transitionId: "21" }

add_comment

이슈에 댓글을 추가합니다. 텍스트를 입력하면 ADF 형식으로 자동 변환됩니다.

"PROJ-123에 '확인 완료' 댓글 달아줘"
→ add_comment { issueIdOrKey: "PROJ-123", body: "확인 완료" }

list_projects

접근 가능한 Jira 프로젝트 목록을 조회합니다.

"내 프로젝트 목록 보여줘"
→ list_projects {}

get_myself

현재 인증된 사용자 정보를 조회합니다. 담당자 배정 시 accountId 확인에 유용합니다.

confluence_create_page

Confluence에 새 페이지를 생성합니다. Confluence REST API v2를 사용합니다.

"TEAM 스페이스에 회의록 페이지 만들어줘"
→ confluence_create_page { spaceKey: "TEAM", title: "2026-03-10 회의록", bodyHtml: "<h2>안건</h2><p>...</p>" }

개발

# 의존성 설치
npm install

# 개발 모드 (tsx)
npm run dev

# 빌드
npm run build

# 빌드 후 실행
npm start

환경변수

변수

필수

설명

JIRA_INSTANCE_URL

O

Jira 인스턴스 URL (예: https://your-domain.atlassian.net)

JIRA_USER_EMAIL

O

Atlassian 계정 이메일

JIRA_API_KEY

O

Atlassian API 토큰

기술 스택

  • TypeScript – 타입 안전한 코드

  • MCP SDK (@modelcontextprotocol/sdk) – Model Context Protocol 구현

  • Jira REST API v3 – 이슈, 프로젝트, 전환 관리

  • Confluence REST API v2 – 페이지 생성

  • stdio 전송 – MCP 클라이언트와 표준 입출력 통신

라이선스

MIT © choing.dev

Available Tools

10 tools
add_commentA

이슈에 댓글을 추가합니다. 텍스트를 입력하면 ADF 형식으로 자동 변환됩니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
bodyYes댓글 내용 (텍스트)
issueIdOrKeyYes이슈 ID 또는 키

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description carries the burden of disclosing behavior. It goes beyond the schema by explaining that plain text input is automatically converted to ADF format, which is a non-obvious and important behavior. It could mention persistence or permissions, but the ADF conversion note is substantial.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two short sentences with no filler or repetition. The primary action is front-loaded, and the key conversion behavior follows immediately.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with two required scalar parameters and no nested objects, the description plus schema cover the essential invocation details. It lacks explicit output or alternative-tool guidance, but those are minor gaps for an add-comment operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds real semantic value for the body parameter by clarifying that the agent can pass plain text and does not need to compose ADF manually, which goes beyond the schema's simple 'comment content (text)' description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action—adding a comment to an issue—and distinguishes itself from sibling tools like update_issue or transition_issue. It also mentions a unique behavior: automatic conversion to ADF format, which adds clarity beyond the tool name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The intended use is implied clearly: add a comment to an issue. However, there is no explicit guidance about when to prefer this tool over alternatives or when not to use it, leaving some routing to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

confluence_create_pageB

Confluence에 새 페이지를 생성합니다. Confluence REST API v2를 사용합니다. bodyHtml에는 간단한 HTML(h2, p, ul, li, table)을 사용하세요.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYes페이지 제목
bodyHtmlYes페이지 본문 HTML (예: <h2>제목</h2><p>내용</p>)
spaceKeyYes스페이스 키 (예: TEAM)

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full behavioral disclosure burden. It only mentions the API version and bodyHtml format guidance, but does not disclose write/mutation effects beyond the verb 'create', nor does it cover permissions, authentication, rate limits, idempotency, or response behavior. This is a significant gap for a mutating tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two compact sentences with no filler: the main action is first, followed by API version and a targeted usage hint. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple 3-parameter tool, the description covers the key bodyHtml constraint and API context. However, with no output schema, it does not explain what the API returns (e.g., page ID or URL), which an agent might need to use the result. Overall adequate but not complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, providing baseline 3. The description adds meaningful value by constraining bodyHtml to simple HTML tags (h2, p, ul, li, table), which helps the agent generate well-formed content beyond the schema's single example.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear action: 'Confluence에 새 페이지를 생성합니다' (creates a new page in Confluence). This names both the verb and the resource, but does not explicitly contrast with sibling tools like create_issue, though the 'Confluence' domain distinguishes it from the Jira-centric siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The usage context is implied: this is for creating Confluence pages, and the REST API v2 note plus bodyHtml instructions give some operational guidance. However, there is no explicit 'when to use' or 'when not to use' statement, no mention of alternatives, and no prerequisites or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_issueC

새 이슈를 생성합니다. 프로젝트 키, 이슈 유형, 요약은 필수입니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
labelsNo라벨 목록
summaryYes이슈 제목
assigneeNo담당자 계정 ID
priorityNo우선순위 (예: Highest, High, Medium, Low, Lowest)
issueTypeYes이슈 유형 (예: Task, Bug, Story, Epic)
parentKeyNo상위 이슈 키 (하위 작업 생성 시)
projectKeyYes프로젝트 키 (예: PROJ)
descriptionNo이슈 설명 (텍스트, ADF로 자동 변환)
customFieldsNo커스텀 필드 (예: { customfield_10001: 'value' })

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full disclosure burden, but it only states that an issue is created and lists required fields. It does not disclose that this is a state-changing operation with persistent side effects, that repeated calls create duplicate issues, or what the tool returns (e.g., created issue key). For a mutation tool with zero annotation coverage, this is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two short sentences with zero filler: the purpose statement comes first and the requirement note second. Every word earns its place, and the structure is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a 9-parameter creation tool with nested objects (customFields, labels), no annotations, and no output schema, yet the description is only two sentences. An agent cannot learn the return value, how parentKey/customFields behavior is scoped, or what permissions are needed — the schema alone does not cover these. The description is too sparse for the tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and every parameter is individually documented with examples (priority values, issueType examples, ADF auto-conversion for description, customFields sample). The description's only parameter information — which fields are required — duplicates the schema's required array and adds no new meaning. Baseline 3 applies since the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb and resource ('새 이슈를 생성합니다' / creates a new issue) and adds the required-field constraint (project key, issue type, summary), which is useful. It does not explicitly differentiate from siblings like update_issue or transition_issue, and the main clause largely restates the tool name, so it stops short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no guidance on when to use this tool versus get_issue, update_issue, transition_issue, or other siblings. Usage context is only implied by the word 'create' — there is no mention of when creating is preferred over updating or transitioning an existing issue. An agent choosing between these sibling tools gets no routing help beyond the tool name.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_issueB

이슈 ID 또는 키로 이슈 상세 정보를 조회합니다. REST API v3를 사용합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
expandNo추가 포함할 정보
fieldsNo반환할 필드 목록
failFastNo빠른 실패 모드
propertiesNo포함할 속성 목록
issueIdOrKeyYes이슈 ID 또는 키 (예: PROJ-123)

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral disclosure burden. '조회합니다' communicates a read-only retrieval operation, and 'REST API v3' adds an implementation detail. But it does not disclose authentication needs, error behavior, rate limits, or how expand/fields affect the response; this is minimally transparent but not misleading.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two short sentences with the primary purpose front-loaded and no filler. The 'REST API v3' clause is mildly useful but not strictly actionable; it does not bloat the definition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a five-parameter read tool with no output schema and no annotations, the description gives the core retrieval behavior but omits response-shape guidance, clearer expand/fields semantics, failure behavior, and usage routing. It is workable for a basic call by ID or key, but it has clear gaps for robust invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

All five parameters already have descriptions in the schema, and the schema coverage is 100%, so the description does not need to restate them. The tool description only repeats the 'ID or key' lookup concept and adds no semantic meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a clear verb — '조회합니다' (retrieves) — and a specific resource ('issue detail information') by ID or key. This distinguishes it from siblings like jql_search, which searches for issues rather than fetching a known one, though it never explicitly names an alternative.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The lookup condition 'ID 또는 키로' implies that the tool should be used when the agent already knows the issue identifier. However, there is no explicit guidance about when not to use it or when to prefer siblings such as jql_search or get_transitions, so routing is left to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_myselfA

현재 인증된 사용자 정보를 조회합니다. 계정 ID 확인에 유용합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the behavioral disclosure burden. The verb '조회합니다' (retrieves) signals a read-only operation, and '현재 인증된 사용자' indicates the authentication context. It could describe return shape or error behavior, but for a simple self-info endpoint these are minor gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description consists of two short, purposeful sentences. The main function is front-loaded, and the second sentence adds practical guidance without padding or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter tool with no output schema, the description tells the agent what the tool returns (current authenticated user info) and why it might be used (account ID verification). It does not enumerate exact response fields, but that is a minor omission given the tool's low complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the rubric baseline is 4. Schema description coverage is trivially 100%. The description adds no parameter details, and none are needed because there is nothing to configure.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: it retrieves the current authenticated user's information. It clearly distinguishes this tool from siblings like get_issue, create_issue, and list_projects by focusing on the user identity rather than Jira/Confluence content. The account-ID use case further clarifies its purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says the tool is useful for checking the account ID, giving a clear usage context. It does not mention alternatives or exclusions, but no sibling tool serves this same purpose, so explicit exclusions are unnecessary.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_transitionsA

이슈의 가능한 상태 전환 목록을 조회합니다. transition_issue 호출 전에 이 도구로 전환 ID를 확인하세요.

ParametersJSON Schema
NameRequiredDescriptionDefault
issueIdOrKeyYes이슈 ID 또는 키

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the behavioral burden. It indicates a read-only lookup via '조회합니다' and clarifies that the result contains transition IDs for later use with transition_issue. It does not mention auth requirements or empty-list edge cases, but these are minor for a simple read-only list tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences, each with a clear job: first states purpose, second states when to use it. There is no filler or redundancy, and the key operational detail is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter tool with no output schema, the description says enough: it returns a list of possible transitions and tells the agent to extract transition IDs before transitioning. It could add required-permission or empty-list notes, but those are not essential for selecting and calling this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%: the only parameter, issueIdOrKey, is already described as the issue ID or key. The description adds no further parameter-level detail, so it stays at the baseline for parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action (retrieve a list of possible status transitions) and a specific resource (an issue), and explicitly connects the output to transition IDs used with transition_issue. This makes it clearly distinguishable from siblings like get_issue or transition_issue.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly tells the agent to use this tool before calling transition_issue to confirm transition IDs, which is a direct usage rule. It also implicitly defines transition_issue as the tool that performs the actual transition, so the agent knows this tool is for lookup only.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_projectsA

접근 가능한 Jira 프로젝트 목록을 조회합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryNo프로젝트 이름/키 검색어
startAtNo시작 인덱스 (페이지네이션)
maxResultsNo최대 결과 수 (기본: 50)

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the behavioral disclosure burden. It usefully scopes the result to 'accessible' projects and implies a read-only lookup via '조회'. However, it does not mention pagination behavior, authentication requirements, rate limits, or return shape.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single focused sentence states the resource, action, and access scope with no wasted words. The meaning is immediate and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple and its parameters are fully documented in the schema, but there is no output schema and the description does not describe the return format or pagination details. It is adequate for basic invocation but leaves some ambiguity about what the response contains.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all three parameters are already documented in the input schema. The description adds no extra parameter-level context, which is acceptable under the baseline because the schema carries the burden.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: it retrieves the list of accessible Jira projects. This clearly distinguishes it from siblings like get_issue, jql_search, and create_issue, which operate on different resources or use different mechanisms.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool: whenever the agent needs a list of Jira projects the current user can access. However, it gives no explicit exclusions or alternative tool references, leaving some routing decisions to inference from sibling names.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

transition_issueA

이슈 상태를 전환합니다. 먼저 get_transitions로 유효한 전환 ID를 확인하세요.

ParametersJSON Schema
NameRequiredDescriptionDefault
issueIdOrKeyYes이슈 ID 또는 키
transitionIdYes전환 ID (get_transitions 응답에서 확인)

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description must carry the full disclosure burden. It only states the high-level action and the prerequisite; it does not reveal that the operation is a state mutation, whether it requires permissions, what happens with an invalid transition ID, or what the response contains. The get_transitions reference is a usage hint, not a behavioral disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with the action front-loaded and the necessary prerequisite immediately after. Every word earns its place; there is no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter mutation with full schema coverage, the description covers the action and the key prerequisite. However, with no annotations and no output schema, it omits side effects, error behavior, and return value expectations. It is adequate but leaves room for richer operational context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds value by clarifying that transitionId must be a valid ID retrieved from get_transitions, giving meaning beyond the schema's terse '전환 ID' label. issueIdOrKey gains no extra meaning, but the transitionId clarification is useful.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the verb '전환합니다' (transition) and the resource '이슈 상태' (issue status), making the tool's core purpose clear. It does not explicitly contrast with siblings like update_issue, but the notion of transitioning status is distinct enough in context.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear precondition: '먼저 get_transitions로 유효한 전환 ID를 확인하세요' (first check the valid transition ID with get_transitions). It does not mention alternatives or when not to use, but since this is the only transition tool, the prerequisite is sufficient guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

update_issueA

이슈 필드를 수정합니다. description은 ADF 형식 객체입니다. get_issue로 현재 ADF를 확인 후 수정하세요.

ParametersJSON Schema
NameRequiredDescriptionDefault
labelsNo라벨 목록
summaryNo이슈 제목
assigneeNo담당자 계정 ID (빈 문자열로 해제)
priorityNo우선순위
descriptionNoADF 형식의 설명 (예: { type: 'doc', version: 1, content: [...] })
customFieldsNo커스텀 필드
issueIdOrKeyYes이슈 ID 또는 키

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

There are no annotations, so the description bears the full burden of disclosing mutation behavior. It says 'modifies' and warns about ADF format, but does not clarify whether unspecified fields are preserved, whether customFields replaces the whole object, what permissions are needed, or what the response contains. Much of the ADF note duplicates the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences with the purpose stated first and the critical ADF caution second. Every phrase earns its place; there is no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutating tool with 7 parameters, no annotations, and no output schema, the description plus schema is usable but incomplete. It does not clarify partial-vs-full update semantics or how customFields should be structured, both of which are relevant for correct invocation. The get_issue guidance helps but only covers one part of the surface.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds the get_issue workflow, but does not add new meaning for labels, summary, assignee, priority, or customFields beyond what the schema already states.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description '이슈 필드를 수정합니다' clearly states the action (modify) and the resource (issue fields). It is distinguishable from create_issue and add_comment, though it does not explicitly contrast with the sibling transition_issue.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides a concrete workflow: use get_issue to check the current ADF before modifying the description, naming the relevant sibling tool. It lacks explicit when-not-to-use guidance versus transition_issue, but the field-editing context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 10 tool updatesv0.0.1
    • First observedadd_comment
    • First observedconfluence_create_page
    • First observedcreate_issue
    • First observedget_issue
    • First observedget_myself
    • First observedget_transitions
    • First observedjql_search
    • First observedlist_projects
    • First observedtransition_issue
    • First observedupdate_issue

TDQS

A3.7/5.0

Scored across 10 tools

Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness4/5

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.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers