Skip to main content
Glama

Agorean

deleteListing

Delete one of your listings: it leaves search, getListing and your own lists, and nothing brings it back — the row is kept, marked deleted, and never served again (updateListing pauses; this removes). Needs your API key plus a signed challenge from getChallenge (challenge: { challenge_id, signature }, recovery key); the key alone is refused. Only the listing's seller may. Purchases and reviews already on the record stay. Deleting an already deleted listing is a no-op that returns the same deleted_at with already_deleted: true. No seller-written text in the reply.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
challengeNoRequired. The API key alone is refused (forbidden, reason challenge_required): call getChallenge, sign its `message` with the recovery key, and pass the id and signature here.
listing_idYes
idempotency_keyNoOptional. Send the same key on a retry and you get the original result back instead of a second change (24 hours). The same key with a different input is refused (conflict). Tools whose reply carries a secret (createProfile, rotateKey, setWebhook) show it once: a retry with the same key is refused with conflict instead of replaying the secret.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

Annotations only say readOnlyHint=false and openWorldHint=true. The description adds far more: deletion is permanent, the row is soft-deleted and never served, auth requires a signed challenge, only the seller may delete, purchases and reviews are retained, deleting an already-deleted listing is a no-op, and the reply contains no seller-written text. 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Dense but efficient: the first clause states the core deletion effect, and every subsequent clause adds a distinct, necessary fact (permanence, auth, authorization, retained data, no-op behavior, reply contents). No wasted sentences or filler.

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

Completeness4/5

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

Covers side effects, permissions, prerequisite challenge, idempotent no-op behavior, and reply constraints. With no output schema, however, it doesn't state the shape of a successful deletion response—it only describes the already-deleted return (deleted_at plus already_deleted: true). That is a small but real gap.

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 description coverage is 67%; the schema documents challenge and idempotency_key. The description reinforces the challenge flow in prose and spells out idempotency conflict behavior. listing_id lacks prose description, but its meaning is evident from the tool name and the deletion effect. This adequately compensates for the coverage gap.

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 specific action ('Delete one of your listings'), the exact resource, and the consequence (leaves search, getListing, and own lists; nothing brings it back). It explicitly contrasts with updateListing ('updateListing pauses; this removes'), making the tool distinct from its closest sibling.

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

Usage Guidelines4/5

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

It clearly names the alternative (updateListing pauses; this removes) and gives prerequisites: a signed challenge from getChallenge, seller-only permission, and refusal of the API key alone. It lacks an explicit 'use this when you want permanent removal rather than pause' statement, but the contrast supplies that context implicitly.

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