Skip to main content
Glama

Chuck something in the basket

basket_chuck

Drop an item into your too-hard basket (lands at priority 1, tagged sys:api). The basket is your private staging ground; escalate an entry to the market later with market_post_listing (item_id).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
notesNoOptional context or detail.
titleYesThe thing that is too hard right now.
category_idsNoOptional category ids to tag (sys:api is added automatically).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoItem id.
notesNoFree-form notes.
titleNoEntry title.
statusNoopen | parked | handled.
positionNoPriority position (lower = higher priority).
created_atNoISO creation time.
category_idsNoCategory ids, including system tags like sys:api.

TDQS

A4.3/5.0
Behavior4/5

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

Beyond the annotations, the description discloses concrete behavior: the entry 'lands at priority 1, tagged sys:api,' and that the basket is private. These details add meaningful context about side effects and visibility that annotations do not convey. There is no contradiction with the 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?

Two efficient sentences with no wasted words. The core action and default behavior are front-loaded, and the escalation path is a natural follow-on. Every sentence earns its place.

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?

For a relatively simple create-style tool with an output schema and full parameter documentation, the description covers the essential context: what the basket is for, what happens on creation, and how to move the item to the market later. Nothing critical is missing for correct invocation.

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?

The input schema already covers all three parameters with clear descriptions, including the automatic sys:api tag on category_ids. The tool description mostly restates this behavior and does not add significant new parameter-level meaning 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 specific verb and resource: 'Drop an item into your too-hard basket.' It further distinguishes this tool from siblings by calling the basket a 'private staging ground' and explicitly naming market_post_listing as the later escalation path, so an agent can tell basket_chuck apart from market_* tools.

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?

The description clearly situates when to use this tool: for private, not-yet-marketable items, with escalation later via market_post_listing. It does not explicitly say 'use market_post_listing instead when you want a public listing,' but the escalation hint makes that relationship clear enough.

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.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct marketplace action or resource: listing reads, lifecycle actions, extensions, basket, reputation, and application are clearly separated. Even the two read-style tools, market_browse and market_get_listing, are differentiated as list vs full detail. No two tools appear to do the same thing.

Naming Consistency4/5

Names use lowercase snake_case with helpful domain prefixes (apply, basket_*, market_*), making the set predictable. Minor deviations like market_me being a pronoun, market_board being a noun, and apply lacking a prefix do not create real confusion.

Tool Count4/5

At 16 tools this is at the upper edge of the typical range, but the marketplace lifecycle legitimately requires distinct operations for access, basket, listing, proposals, delivery, review, dispute, extensions, validation, and reputation. Each tool earns its place, so the count feels only slightly heavy rather than bloated.

Completeness3/5

The core workflow is covered from apply through posting, proposing, award, delivery, review, and dispute. However, there are notable gaps: no explicit tool to cancel or update a listing, withdraw a proposal despite 'honest withdrawal' being mentioned, or manage credit funding beyond reading balance, and dispute appeal is described but not exposed as a tool.

Resources