Skip to main content
Glama

Update Product

neuron_update_product

Update any field of a product (price, delivery, cover, enabled, fee payer, …).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesProduct UUID
kindNoShort label e.g. 'E-book', 'Presets', 'Service'
codesNoFor codeMode 'pool': the unique codes/keys to add (one gets sent per buyer). Appended to any existing pool.
themeNoPer-product theme: { bg, accent, text (hex), mode: 'light'|'dark', layout: 'hero'|'side', coverAspect: '16/10'|'3/2'|'1/1'|'4/5', cta: buy-button label e.g. 'Reserve your hour' }
titleNoProduct title shown to buyers
contentNoRich product-page content blocks. Ordered array of {type, ...}: heading {text,level}, text {markdown}, image {url,caption}, video {url}, callout {emoji,text}, collapsible {title,blocks[]}, divider {}, button {label,url}, embed {url}, spacer {}
enabledNoWhether the product is live
categoryNoCategory label e.g. 'Productivity'
codeModeNoFor deliveryType 'code': 'shared' (same text to every buyer), 'pool' (a unique code per sale from codes you upload — sells out when empty), or 'generated' (auto-mint a unique license key per sale)
currencyNoISO currency (default NGN)
feePayerNo'buyer' (fee added on top, seller gets full price — default) or 'seller' (fee deducted)
channelIdNoWhatsApp session UUID used to deliver the product (defaults to the org default channel)
coverTypeNoHow the cover renders
coverColorNoCover colour (hex) for 'color'/'gradient' cover types
coverEmojiNoEmoji used as a cover fallback (e.g. 📓)
priceMinorNoCurrent price (charged). Amount in kobo (minor units): ₦1 = 100. Minimum ₦500 = 50000. Set 0 for a free product (no payment).
coverColor2NoSecond colour (hex) for 'gradient' cover
descriptionNoRich description / what the buyer gets
deliveryTextNoFor 'link'/'code': the link or code the buyer receives. Optional note for 'file'.
deliveryTypeNoHow the product is delivered: 'file' (uploaded file), 'link' (URL), or 'code' (text/code)
coverImageUrlNoCover image URL
checkoutFieldsNoCustom checkout questions the buyer answers (name, address, specs/customisations…). Their answers are attached to the order and sent to the seller.
deliveryFileUrlNoFor deliveryType 'file': the uploaded file URL (upload first with neuron_upload_media)
deliveryFileNameNoFilename shown in the WhatsApp document
originalPriceMinorNoOptional compare-at / 'was' price (kobo), shown struck through. Must be ≥ current price.

TDQS

A3.6/5.0
Behavior3/5

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

The annotations already declare readOnlyHint=false, idempotentHint=false, and destructiveHint=false, so the agent knows this is a mutating operation. The description adds that the update can touch any field, which is useful. However, it does not disclose partial-update semantics (e.g., whether omitted fields are left unchanged), whether changes take effect immediately, or any special interactions between fields like deliveryType and deliveryFileUrl or codeMode and codes. Without annotation hints for idempotency/destructiveness, more behavioral disclosure would be valuable.

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 concise sentence that front-loads the key point ('Update any field of a product') and lists example fields. Every word earns its place. However, it could have used the remaining space to add usage guidance or behavioral notes about partial updates, making it slightly under-utilized.

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?

As a mutating tool with 25 parameters and no output schema, the description could have explained the update semantics: whether this is a partial update (only supplied fields change) or a full replace, whether all fields are optional except id, and any warnings about interdependent fields like deliveryType + codes/codeMode. The schema already covers individual parameters, and the id requirement is stated there. A short sentence about partial-update behavior would significantly improve completeness.

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 description coverage is 100%, so the schema already documents every parameter thoroughly. The description adds an explicit overview of the field categories ('price, delivery, cover, enabled, fee payer, …') which helps an agent understand the breadth of the tool. However, it doesn't add significant meaning beyond what the schema already provides, so the baseline of 3 is appropriate.

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 ('Update') and a specific resource ('a product'), and explicitly lists the editable fields ('price, delivery, cover, enabled, fee payer, …'). This clearly distinguishes it from sibling tools like neuron_create_product, neuron_delete_product, and neuron_list_products.

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 clearly identifies what can be updated ('any field of a product'), giving a strong implied usage context. However, it does not explicitly state when to use this tool versus alternatives like neuron_add_product_codes, or mention any prerequisites such as fetching the product first with neuron_get_product. The ellipsis '…' hints at more fields but leaves the exact scope slightly open.

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

B3.4/5.0
Disambiguation3/5

Most tools are clearly separated by resource type, but there is meaningful overlap in messaging entry points (send_message, send_whatsapp, compose_message, bot_api_send) and contact ingestion/sync tools (import_contacts, populate_contacts, sync_whatsapp_contacts). The descriptions help disambiguate, but with 309 tools an agent will frequently need to read closely to pick the right one.

Naming Consistency4/5

The overwhelming majority of tools follow a consistent verb_noun snake_case pattern: create_*, get_*, list_*, update_*, delete_*. Minor deviations like sales_stats, lead_stats, wallet_balance, and whoami break the pattern slightly, but overall naming is highly predictable.

Tool Count1/5

309 tools is an extreme count for any MCP server, even a broad platform. This creates significant cognitive load and navigation overhead for agents, and far exceeds the well-scoped 3-15 tool range where coherence is strongest.

Completeness4/5

The tool surface is remarkably comprehensive across bots, contacts, campaigns, flows, knowledge bases, personas, marketplace, wallet, and products. Minor gaps exist — lead sources lack update/delete tools, and there is no single get_task or get_webhook alongside their list/update/delete counterparts — but these are workable gaps rather than dead ends.

Resources