import_excel
Import pivot Excel to apply eBay exclusion settings; dry-run preview available.
Instructions
ピボット形式のExcelからeBayに除外設定を反映
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dryRun | No | trueでプレビューのみ、falseで実際に反映 | |
| filePath | Yes | インポートするExcelファイルのパス |
Import pivot Excel to apply eBay exclusion settings; dry-run preview available.
ピボット形式のExcelからeBayに除外設定を反映
| Name | Required | Description | Default |
|---|---|---|---|
| dryRun | No | trueでプレビューのみ、falseで実際に反映 | |
| filePath | Yes | インポートするExcelファイルのパス |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must disclose behavioral traits. It states the action ('反映') but does not mention the dryRun parameter, which is critical for preview vs. actual application, nor any side effects like overwriting existing exclusions. This is a significant gap for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that immediately states the core purpose. There is zero filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is minimal for a mutation tool. It omits the existence and behavior of the dryRun parameter, which is essential for safe usage. It also does not explain the expected Excel format or any prerequisites. Even with schema coverage, the main description should mention the preview option to prevent accidental changes.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% for both parameters (filePath and dryRun), so the schema already documents them. The tool description adds no extra meaning beyond the schema, meeting the baseline for high coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('反映' = reflect/apply) and the resource (exclusion settings from pivot-format Excel to eBay). It is specific enough to distinguish from siblings like export_all_excel (export) and update_exclusions (direct update), though it does not explicitly name an alternative.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given on when to use this tool versus alternatives such as update_exclusions or bulk_update_exclusions. The use case is implied by the name and description but no explicit when-to-use or when-not-to-use is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.