Skip to main content
Glama
kcw2034

io.github.kcw2034/maplestory-mcp-server

by kcw2034

get_character_pet_equipment

Retrieve pet equipment details for a MapleStory character by providing the character OCID and an optional date.

Instructions

캐릭터 펫 장비 정보를 조회합니다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNo조회 기준일 (YYYY-MM-DD)
ocidYes캐릭터 OCID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

B3.2/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 disclosure burden. The word '조회합니다' communicates a read-only retrieval operation, but it does not mention authentication needs, date defaulting behavior, or what happens when no pet equipment exists.

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 a single short sentence with no filler, and the core resource is front-loaded. It is appropriately concise, though it offers no structural detail or additional useful context.

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 read endpoint with an output schema, the description plus schema is minimally sufficient. However, it lacks any reference to the required OCID workflow or disambiguation among the closely related equipment endpoints, leaving some context to inference.

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 both `ocid` and `date` are already documented in the input schema. The tool description adds no parameter-level meaning beyond the general resource context, which matches the baseline for fully covered schemas.

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 '캐릭터 펫 장비 정보를 조회합니다' (retrieves character pet equipment information), which gives a clear verb and resource. It is specific enough to indicate the pet-equipment scope, but it is essentially a direct restatement of the tool name and adds no further differentiation from the sibling equipment tools.

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 provides no guidance on when to use this tool versus sibling tools such as get_character_item_equipment or get_character_cashitem_equipment. It also does not mention prerequisites like obtaining an OCID via get_character_ocid, nor any date-related usage context.

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