Skip to main content
Glama

jdra_create_issue

Create JDRA issues with automatic assignee, time tracking from the title, and auto-created customers and product lines by name, saving manual data entry.

Instructions

JDRA 이슈를 생성한다. 담당자 미지정 시 자동으로 본인. 제목의 소요시간(예: 2m, 10m, 1h30m)은 actualMinutes(작업시간)로 자동 등록. 고객사·제품군은 이름만으로도 연결(없으면 자동 생성).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNo태그
linksNo외부 링크 {url, label}
titleYes이슈 제목 (필수)
statusYes상태 (필수)
dueDateNo마감 예정일 yyyy-MM-dd
endDateNo종료일 yyyy-MM-dd (마감예정일 dueDate 와 별개)
categoryYes카테고리 (필수). 기술지원 등은 '지원'.
jiraUrlsNoJira URL 또는 이슈 키 목록
priorityYes우선순위 (필수)
progressNo진행률 0~100 (%)
startDateNo시작일 yyyy-MM-dd
projectIdsNo연결 프로젝트 id 목록
customerIdsNo고객사 id 목록
descriptionNo상세 내용 (본문)
salesUserIdsNo영업담당자 user id 목록
actualMinutesNo실제 소요 시간(분). 예: '10분' → 10
assigneeUserIdNo담당자 user id (생략 시 본인). 아래 역할별 인원과 별개.
productLineIdsNo제품군 id 목록
engineerUserIdsNo엔지니어(담당 엔지니어) user id 목록
relatedIssueIdsNo연관 이슈 id 목록
developerUserIdsNo개발자 user id 목록
estimatedMinutesNo예상 소요 시간(분)
newCustomerNamesNo고객사 이름 목록 (없으면 자동 생성). id 몰라도 됨.
stakeholderUserIdsNo관계자 user id 목록
newProductLineNamesNo제품군 이름 목록 (없으면 자동 생성)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses key side effects like auto-creating customers/product lines and parsing time from the title, but it does not mention write implications, error conditions, or limitations. It is transparent about the main automations but lacks broader behavioral detail.

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 three sentences, each conveying distinct valuable information (creation, assignment default, time parsing, customer/product handling). No fluff, well-organized, and easy to scan.

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?

The description covers the core purpose and important behaviors, but it doesn't mention response format or success/failure outcomes. Given the 25 parameters and no output schema, a bit more detail on expected output would help, yet the description still provides adequate context for basic usage.

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 schema descriptions are minimal, but the tool description adds significant meaning: it explains that newCustomerNames and newProductLineNames enable auto-creation, that actualMinutes can be derived from the title, and that assigneeUserId defaults to the caller. This goes beyond the schema and enriches parameter understanding.

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 it creates a JDRA issue and highlights specific automatic behaviors (self-assignment, time parsing, customer/product auto-creation). However, it doesn't explicitly differentiate from related siblings like jdra_create_and_register_issue, so the purpose is clear but not maximally disambiguating.

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 mentions features but gives no guidance on when to use this tool over alternatives such as jdra_import_jira_issue or jdra_create_and_register_issue. It lacks explicit use cases or conditions, leaving the agent to infer selection criteria.

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