Skip to main content
Glama
stellaraccident

digikey-list-mcp

digikey_preview_mylist_changes

Read-onlyIdempotent

Validate exact SKUs and return a signed, expiring preview of MyList updates without changing DigiKey.

Instructions

Validate exact SKUs and return an expiring, signed preview without changing DigiKey.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
linesYes
list_idNo
list_nameNo
assembly_countNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint and openWorldHint, so the safety profile is covered. The description adds genuinely non-obvious behavior beyond that: the preview is 'expiring' and 'signed', implying a time-limited token returned to the caller. It still omits what happens on invalid SKUs and how list_id vs list_name interact.

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?

A single front-loaded sentence with a clear verb and no filler; the key non-mutating guarantee is stated up front. It is efficient, though arguably too terse given the schema's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool taking a nested array of line items with target price, attrition, packaging and reference fields at 0% schema coverage, one sentence is not enough. An output schema exists so return values need not be explained, but the input contract is largely unaddressed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% across 4 top-level params and a 9-field nested RequestedLine object. The description only hints that part numbers must be 'exact' SKUs and says nothing about lines, list_id/list_name selection, or assembly_count, leaving the nested pricing/attrition fields entirely undocumented.

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?

States a specific verb and resource ('Validate exact SKUs', 'return an expiring, signed preview') and contrasts itself with the write path via 'without changing DigiKey'. It is distinguishable from apply_mylist_changes, though it does not explicitly differentiate itself from the similarly named sibling digikey_validate_mylist.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'without changing DigiKey' and 'preview' imply this is a dry-run step before apply_mylist_changes, so the usage context is inferable. However, no sibling is named and there is no explicit when/when-not guidance versus validate_mylist or apply_mylist_changes.

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