Skip to main content
Glama

Prepare an eBay listing

list_on_ebay
Idempotent

For a signed-in user: turns a photo scan from price_item (account.scanId) into an inventory item with a draft eBay listing on their Underpriced AI account (title, list price defaulting to the market price, condition, description) and returns the link where they review and publish it in the app, plus whether eBay is connected and the connect link if not. It never publishes anything; publishing happens in the app after the user checks the listing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
priceNoList price in USD. Leave empty for the scan's market list price.
titleNoOverrides the generated listing title (80 characters, eBay's limit).
scan_idYesThe account.scanId that price_item returned for a photo scan on this account (the saved-scan link works too).
conditionNoOverrides the condition read from the photo.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.4/5.0
Behavior5/5

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

Annotations provide idempotentHint, readOnlyHint, and destructiveHint, but the description adds critical behavior: it never publishes, it returns a review link and connection status, and it requires a signed-in user. It clarifies side effects (creating a draft) and non-actions (not publishing), which is essential context beyond the structured hints. No contradiction with annotations.

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, dense sentence that front-loads the audience ('For a signed-in user') and proceeds logically: input, action, output, and non-action. It is efficient with no wasted words, though it is long. Every clause adds information, so it earns a 4 rather than a 5 due to the length.

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

Completeness5/5

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

With no output schema, the description must and does explain the return: the review link, whether eBay is connected, and the connect link if not. It covers prerequisites (signed-in user, scan_id from price_item) and clearly states the non-destructive nature. For a creation tool, this is complete.

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?

Schema coverage is 100%, so the baseline is 3. The description adds extra meaning by noting the price defaults to the market price, which clarifies the price parameter's default behavior not fully spelled out in the schema. It also implies title and condition are overrides, aligning with the schema. This goes slightly beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear, specific action: turns a photo scan into an inventory item with a draft eBay listing. It explicitly names the source tool (price_item) and the deliverable (link for review/publish), and adds a key boundary ('It never publishes anything') that distinguishes it from any publishing action. This is specific and unambiguous.

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 description implies a workflow ('from price_item') and a precondition ('For a signed-in user'), but it does not explicitly state when to use this tool versus alternatives or when not to use it. It names no sibling tools as alternatives, so an agent must infer the context from the mention of price_item. This is adequate but not explicit.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources