jdra-mcp
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation3/5
Several tools have overlapping purposes: jdra_create_issue and jdra_create_and_register_issue (one is a superset of the other), and jdra_import_jira_issue vs jdra_register_jira_to_weekly_report similarly overlap. Descriptions clarify the differences, but an agent could easily misselect when only the atomic action is needed. The search_* tools and whoami are clearly distinct.
Naming Consistency4/5All tools share the jdra_ prefix and use snake_case, with a generally predictable verb_noun pattern (search_projects, create_issue, add_issue_to_weekly_report). Minor deviations include jdra_whoami and the compound verb in create_and_register_issue, but overall the naming is consistent and readable.
Tool Count5/5With 12 tools, the server covers a focused set of operations for JDRA/Jira integration and weekly report management. Each tool serves a specific function or a clearly documented shortcut, and the count is well within the typical 3-15 range for a cohesive MCP server.
Completeness3/5The core workflow—searching reference data, previewing/importing Jira issues, creating JDRA issues, and registering them to weekly reports—is well covered. However, there are notable gaps: no get/list/update/delete for imported or created issues, and no way to remove an issue from a weekly report. This limits full lifecycle management within the server.
Average 3.7/5 across 12 of 12 tools scored. Lowest: 2.8/5.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 3 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.
If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.
MCP servers without a LICENSE cannot be installed.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden of behavioral disclosure. It does state the core effect (importing and registering into the weekly report), which implies mutation. However, it does not disclose what exactly gets modified, whether the operation is idempotent, what happens if the issue already exists, what side effects occur, or what the response will be.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness3/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short and front-loaded with the primary action, which is good. However, '두 예시 시나리오 1번' is an unclear, context-dependent fragment that does not earn its place and may confuse an agent. The description is concise but not fully self-contained.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations, no output schema, and the existence of closely related sibling tools, the description is too thin for an agent to call this tool confidently. It does not explain prerequisites, return values, error conditions, or how this composite operation differs from the alternative single-purpose tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the structured schema already documents both parameters and the example value for 'key'. The tool description adds no additional parameter semantics beyond what the schema provides, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action: import a Jira issue and immediately register it in the user's weekly report. This is clear and more specific than just 'import' or 'add'. However, it does not explicitly differentiate itself from sibling tools like jdra_import_jira_issue or jdra_add_issue_to_weekly_report, and the phrase '두 예시 시나리오 1번' adds confusion rather than clarity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given about when to use this tool versus its alternatives. Sibling tools such as jdra_import_jira_issue, jdra_add_issue_to_weekly_report, and jdra_create_and_register_issue exist, but the description never states conditions, exclusions, or recommended selection criteria. The reference to 'example scenario 1' is not actionable without external context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full disclosure burden, and it reveals two genuinely hidden behaviors: automatic self-assignment when 담당자 is unspecified, and automatic conversion of a duration token in the title (e.g., '2m') into actualMinutes. These side effects could not be inferred from the schema and materially change how the agent should construct the call.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness3/5Is the description appropriately sized, front-loaded, and free of redundancy?
The text is compact and front-loads the primary action before the auto-behavior notes. However, the final fragment '두 예시 시나리오 2번(고객사 기술지원 등)' is ambiguous and does not earn its place, adding noise for an AI agent without a shared reference point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a 26-parameter, side-effectful combined operation with no annotations and no output schema, yet the description is only three short clauses. It omits what the agent should expect on success (issue ID? report confirmation?), behavior when no weekly report exists, and any prerequisites, leaving a meaningful comprehension gap for a tool of this complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3 and all 26 parameters are already documented in Korean. The description adds some cross-parameter semantics (title duration maps to actualMinutes), but the self-assignee rule is largely duplicated in the schema's assigneeUserId description ('생략 시 본인'), so the added value is modest.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The opening clause 'JDRA 이슈를 생성하고 곧바로 내 주간보고에 등록한다' states a specific compound action: create a JDRA issue and immediately register it to the caller's weekly report. This differentiates it from overlapping siblings like jdra_create_issue and jdra_add_issue_to_weekly_report, though the trailing '두 예시 시나리오 2번(고객사 기술지원 등)' reference is cryptic and detracts slightly.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use guidance or named alternatives are provided, despite heavy overlap with jdra_create_issue and jdra_add_issue_to_weekly_report. The '시나리오 2번' hint is a vague reference to an external example rather than actionable selection criteria, so an agent cannot reliably decide between calling this tool versus composing the two sibling actions separately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses a meaningful behavioral rule: if fieldsetName is omitted, it uses the only fieldset, creates a default fieldset if none exists, or requests specification if multiple exist. However, with no annotations provided, the description carries the full burden and does not disclose side effects, permissions, or what happens if the weekly report itself does not exist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single compact sentence with the action front-loaded and the conditional rule appended efficiently. Every clause carries useful information and there is no redundant wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 2-parameter tool with no output schema, the description covers the main action and the key edge cases for the optional parameter. It lacks some context such as prerequisites (e.g., whether the issue must already exist or whether a weekly report is required), but the provided detail is sufficient for most invocation scenarios.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with both parameters described, but the description adds value beyond the schema by specifying the exact selection behavior for omitted fieldsetName (one, none, or multiple fieldsets). This is not present in the input schema and helps an agent decide whether to provide fieldsetName.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb and resource: registering an issue into '내 주간보고 issue_list 필드셋' (my weekly report issue_list fieldset). It is specific enough to understand the core action, but it does not explicitly differentiate itself from sibling tools like jdra_register_jira_to_weekly_report or jdra_import_jira_issue.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives; no sibling tools are mentioned or contrasted. The conditional logic about fieldsetName is parameter-level guidance, not tool-selection guidance, so it does not help an agent choose between this and related registration tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- 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/5Is 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/5Given 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/5Does 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/5Does 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/5Does 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.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It does not specify whether the operation is read-only, what side effects (if any) occur, or how errors are handled. The term 'preview' hints at non-destructive behavior, but this is not explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that conveys the essential information without redundancy. It is well-structured and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the tool's purpose and parameter but does not mention the output format or content of the preview, nor any prerequisites or edge cases. Given the tool's simplicity, this is adequate but not complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'key' is fully described with an example format ('PF3-1111'), which clarifies the expected input. While the description is brief, it provides sufficient meaning beyond the schema, earning a high score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: to fetch a preview before import using a Jira issue key. The verb '가져온다' (fetches) and the specific context 'import 전 미리보기' (preview before import) leave no ambiguity about what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for previewing before import but does not explicitly contrast with sibling tools like import_jira_issue or create_issue. It gives an example format, which helps, but lacks explicit guidance on when to choose this tool over alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/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. It discloses the read-style lookup and partial-name filtering behavior, but it does not describe the return format, matching semantics, or any edge behavior. This is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences front-load the purpose and then state the filtering behavior. There is no filler or redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a simple tool with one optional parameter and no output schema. The description gives the purpose and filter behavior, and the '이름→id 해석용' purpose implies the return context. It lacks explicit return format details, but for this complexity level it is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents the query parameter. The description adds little beyond what the schema states about partial-name filtering, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear action ('제품군을 조회한다') and a specific resource (product lines), with an explicit purpose ('이름→id 해석용'). This differentiates it from sibling search tools for projects, users, and customers.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase '이름→id 해석용' implies this tool is for resolving a product line name into an ID, and 'query 로 이름 일부 필터' gives the filtering mechanism. However, it does not explicitly mention alternatives or state when not to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations at all, the description carries the full behavioral burden. It does disclose the most important non-obvious trait — '(없으면 lazy-create)' — warning that this is not purely a read operation and may create the report/field sets if absent. However, it does not describe the response shape or the implications of the lazy-create side effect, which matters because downstream mutation tools depend on this state.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
A single compact Korean sentence that front-loads the action (조회), then adds the lazy-create caveat, then the usage context. Every word carries information; there is no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter getter with no output schema, the description is largely sufficient: it names what is retrieved, discloses the side-effect behavior, and explains why an agent would call it. The only gap is the lack of any hint about the response structure (field set IDs/names), which would help an agent act on the result, but this is a minor omission for a simple lookup tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4 and there is no parameter gap to compensate for. The description appropriately focuses on what the call returns (the weekly report and field set list) rather than inventing parameter guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb (조회한다/retrieves), a specific resource (내 주간보고와 필드셋 목록/my weekly report and field sets), and a distinct purpose (deciding which field set to use for issues). This functionally separates it from the sibling mutation tools like jdra_add_issue_to_weekly_report, but it does so implicitly rather than naming a sibling, 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 Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The closing clause '어느 필드셋에 이슈를 넣을지 정할 때 참고' (refer to this when deciding which field set to put issues in) gives a clear when-to-use scenario tied to the weekly-report workflow. It does not explicitly state exclusions or name alternative tools, but the usage context is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- 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/5Is 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/5Given 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/5Does 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/5Does 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/5Does 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.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. '조회한다' signals a read-only operation, and '일부 필터' discloses partial matching behavior. However, it does not mention response shape, edge cases, or pagination, which is a moderate gap for a tool without an output 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/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single compact sentence that front-loads the core purpose and then states the filtering syntax. It has no filler words or repetition of schema details, making it efficient for an agent to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With only one optional parameter and no output schema, the description provides sufficient orientation for the expected use case. It indicates the return purpose (name→id mapping) and the filter semantics. It could be more explicit about the exact output structure, but the core calling context is well covered.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already documents the 'query' parameter, including its optionality and meaning. The description only restates that the query filters by partial name, adding no new parameter-specific detail beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('조회한다'), the resource ('고객사'), and a specific intended use case ('이름→id 해석용'). This distinguishes it from sibling search tools like jdra_search_users or jdra_search_projects by naming the entity type and 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/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase '이름→id 해석용' gives a clear context for when to call this tool: when converting a customer name to an ID. It implies the use case without explicitly naming alternatives, so no explicit exclusions are present, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the behavioral disclosure burden. It communicates that the action is a read-only identity check via the verb '확인한다', but it does not state side effects, error behavior on invalid PAT, or return format. The description is sufficient for a trivial whoami tool but adds little beyond the purpose.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that immediately states the tool's core function with no filler. It is front-loaded and equally concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 0 parameters and no output schema, the description gives enough information to understand what the tool does. It does not specify the return shape, but the purpose strongly implies the result is the user identity, and an agent can discover the actual response upon invocation. Given the simplicity, completeness is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema is empty and schema coverage is 100%, so there are no parameters to explain. The baseline for a 0-parameter tool is 4, and the description does not omit any parameter details because none exist.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb '확인한다' (checks) and clearly states the resource: which JDRA user the current PAT operates as. This distinguishes it from all sibling tools, which focus on projects, reports, issues, or users, none of which are identity checks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for verifying the identity behind a PAT, but it does not explicitly state when to prefer it over alternatives or mention any conditions. There are no close sibling alternatives, so the implied use case is fairly clear, but explicit guidance is absent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the disclosure burden. It explicitly describes a read operation and partial-name filtering behavior via query. It does not cover output structure or edge cases, but for a simple lookup this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences with no filler; the operation and purpose are front-loaded and the filtering parameter is stated succinctly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple: one optional parameter, no output schema, and a clear lookup purpose. The description is complete enough to select and invoke it correctly, though a bit more explicit return-format detail would make it fully self-contained.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the query parameter is already described as '프로젝트 이름 일부 (생략 시 전체)'. The description mostly restates this, adding no new parameter-level semantics beyond the name→id purpose.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource ('프로젝트를 조회한다') and adds the intended purpose '이름→id 해석용', making the tool's role clear. It is distinct from sibling search tools for users, customers, and product lines.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The parenthetical '(이름→id 해석용)' gives a clear context for when to use the tool: resolving a project name to an ID. It does not explicitly list exclusions or alternatives, but no sibling covers project search.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. The verb 'retrieve' implies a read-only operation, but side effects, authentication, or error behavior are not mentioned. It is adequate for a simple search 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/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences with no unnecessary detail. It is front-loaded with the main action and purpose, followed by the parameter behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool with one optional parameter, the description provides sufficient context for an agent to decide when to use it and how to invoke it. Output format is not specified, but that is not critical for this tool type.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema describes the query parameter, and the description adds that it filters by partial name/ID and that omission returns all users. This reinforces the parameter's meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves users, and explicitly mentions its purpose for interpreting assignee/role personnel. This distinguishes it from sibling search tools for projects, customers, and product lines.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool (for resolving assignee/role personnel) and the optional query parameter behavior. It does not explicitly contrast with other search tools, but the entity type (users) makes the context clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md: