Skip to main content
Glama

jdra_import_jira_issue

Import Jira issues into JDRA by creating corresponding JDRA issues from Jira keys. If a Jira issue already exists, reuse its existing JDRA issue ID instead of creating a duplicate.

Instructions

Jira 이슈를 JDRA 이슈로 가져온다(생성). 이미 있으면 기존 issueId 를 재사용(ALREADY_EXISTS).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keysYesJira 이슈 키 목록 (예: ["PF3-1111"])
targetProjectIdsNo생성될 이슈에 연결할 JDRA 프로젝트 id

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/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 burden. It usefully discloses idempotency via '이미 있으면 기존 issueId 를 재사용(ALREADY_EXISTS)', but it omits return shape, permission requirements, and other side effects of creation.

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 compact, front-loaded sentence that conveys the core action and the important edge-case behavior without any 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 2-parameter tool, the core purpose and idempotency behavior are present. However, it lacks details about return values, whether targetProjectIds is needed for creation, and any prerequisites, making it adequate but not complete.

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?

The input schema covers both parameters with descriptions, so the baseline is 3. The tool description does not add significant parameter-level meaning beyond what the schema already provides.

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: importing/creating a Jira issue as a JDRA issue, and it includes the key ALREADY_EXISTS reuse behavior. This clearly distinguishes it from generic create or preview tools among the siblings.

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 intended use case is clear: when a Jira issue should become a JDRA issue. It does not explicitly name alternatives or exclusions, but the context is unambiguous and there is no misleading guidance.

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