Skip to main content
Glama

ebay_bulk_update_conversation

Update status for multiple eBay conversations at once, setting each to active, archived, deleted, read, or unread.

Instructions

Bulk update multiple conversations. Each entry sets conversationStatus (ACTIVE, ARCHIVE, DELETE, READ, UNREAD) for a conversationId.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
conversationsNoArray of conversations to update

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changedv1.14.1
    • addedInput schema / properties / conversations / items / properties / conversationId
      Added value: +{
      +  "description": "The unique identifier of the conversation",
      +  "type": "string"
      +}
    • addedInput schema / properties / conversations / items / properties / conversationStatus
      Added value: +{
      +  "description": "The updated status: ACTIVE, ARCHIVE, DELETE, READ, UNREAD",
      +  "type": "string"
      +}
    • addedInput schema / properties / conversations / items / properties / conversationType
      Added value: +{
      +  "description": "The existing type: FROM_MEMBERS or FROM_EBAY (required but cannot be updated)",
      +  "type": "string"
      +}
    • removedInput schema / properties / conversations / items / properties / conversation_id
      Removed value: -{
      -  "description": "The unique identifier of the conversation",
      -  "type": "string"
      -}
    • removedInput schema / properties / conversations / items / properties / conversation_status
      Removed value: -{
      -  "description": "The updated status: ACTIVE, ARCHIVE, DELETE, READ, UNREAD",
      -  "type": "string"
      -}
    • removedInput schema / properties / conversations / items / properties / conversation_type
      Removed value: -{
      -  "description": "The existing type: FROM_MEMBERS or FROM_EBAY (required but cannot be updated)",
      -  "type": "string"
      -}
  2. Changed7 schema fields changedv1.12.0
    • changedInput schema / properties / conversations / items / properties / conversation_id / description
      Previous value: -"The conversation ID"New value: +"The unique identifier of the conversation"
    • addedInput schema / properties / conversations / items / properties / conversation_status
      Added value: +{
      +  "description": "The updated status: ACTIVE, ARCHIVE, DELETE, READ, UNREAD",
      +  "type": "string"
      +}
    • addedInput schema / properties / conversations / items / properties / conversation_type
      Added value: +{
      +  "description": "The existing type: FROM_MEMBERS or FROM_EBAY (required but cannot be updated)",
      +  "type": "string"
      +}
    • removedInput schema / properties / conversations / items / properties / flagged
      Removed value: -{
      -  "description": "Mark as flagged/unflagged",
      -  "type": "boolean"
      -}
    • removedInput schema / properties / conversations / items / properties / read
      Removed value: -{
      -  "description": "Mark as read/unread",
      -  "type": "boolean"
      -}
    • removedInput schema / properties / conversations / items / required
      Removed value: -[
      -  "conversation_id"
      -]
    • removedInput schema / required
      Removed value: -[
      -  "conversations"
      -]
  3. First observedv1.8.10

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description must fully disclose behavior. It states that status is set for each conversationId but omits important details like whether the operation is atomic, how partial failures are handled, what the response looks like, or if other fields are affected.

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 concise sentences with no wasted words. Essential information is front-loaded: the purpose and the status options.

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

Completeness3/5

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

For a bulk update tool with no output schema and no annotations, the description lacks completeness on error handling, response format, and behavior. While the core function is clear, critical operational context is missing.

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?

Schema coverage is 100% with nested parameter descriptions. The description adds minor clarity (e.g., each entry sets status) but largely duplicates schema information. No additional semantics beyond what the schema provides.

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 clearly states 'Bulk update multiple conversations' with specific verb and resource. It lists the possible statuses (ACTIVE, ARCHIVE, DELETE, READ, UNREAD) and distinguishes from the sibling single-update tool 'ebay_update_conversation' by its bulk nature.

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 use for bulk updates but does not explicitly state when to use this over alternatives like 'ebay_update_conversation'. No guidance on when not to use or prerequisites is provided.

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

Deploy Server

Other Tools