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. 📓)
membershipNoMake this a recurring subscription/membership: it tracks a paid period per buyer, renews from their Neuron wallet when possible (else emails a reminder — no card auto-charge), and marks them lapsed when the period + grace passes. React to membership.started/renewed/lapsed in Flows to deliver whatever the membership grants.
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
membershipIntervalNoBilling period. Required when membership is true.
originalPriceMinorNoOptional compare-at / 'was' price (kobo), shown struck through. Must be ≥ current price.
membershipGraceDaysNoDays after the period ends before an unpaid member lapses (and, if a group is attached, is removed from it). Default 1.
membershipGroupNameNoGroup subject used when the attached group is auto-created (defaults to the product title). Only relevant with membershipGroupSlug.
membershipGroupSlugNoOPTIONAL: attach a WhatsApp group as a membership perk. Org-unique handle (lowercase letters, numbers, hyphens); the group is created on the first sale, buyers are added on renewal and removed on lapse. Your connected number must be a group admin. Omit for a membership that isn't group-based.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed5 schema fields changed
    • addedInput schema / properties / membership
      Added value: +{
      +  "description": "Make this a recurring subscription/membership: it tracks a paid period per buyer, renews from their Neuron wallet when possible (else emails a reminder — no card auto-charge), and marks them lapsed when the period + grace passes. React to membership.started/renewed/lapsed in Flows to deliver whatever the membership grants.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / membershipGraceDays
      Added value: +{
      +  "description": "Days after the period ends before an unpaid member lapses (and, if a group is attached, is removed from it). Default 1.",
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedInput schema / properties / membershipGroupName
      Added value: +{
      +  "description": "Group subject used when the attached group is auto-created (defaults to the product title). Only relevant with membershipGroupSlug.",
      +  "type": [
      +    "string",
      +    "null"
      +  ]
      +}
    • addedInput schema / properties / membershipGroupSlug
      Added value: +{
      +  "description": "OPTIONAL: attach a WhatsApp group as a membership perk. Org-unique handle (lowercase letters, numbers, hyphens); the group is created on the first sale, buyers are added on renewal and removed on lapse. Your connected number must be a group admin. Omit for a membership that isn't group-based.",
      +  "type": [
      +    "string",
      +    "null"
      +  ]
      +}
    • addedInput schema / properties / membershipInterval
      Added value: +{
      +  "anyOf": [
      +    {
      +      "enum": [
      +        "daily",
      +        "weekly",
      +        "monthly"
      +      ],
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "description": "Billing period. Required when membership is true."
      +}
  2. Changed1 schema field changed
    • changedInput schema / properties / theme / description
      Previous value: -"Per-product theme: { bg, accent, text (hex), mode: 'light'|'dark', layout: 'hero'|'side', coverAspect: '16/10'|'3/2'|'1/1'|'4/5' }"New value: +"Per-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' }"
  3. Changed5 schema fields changed
    • addedInput schema / properties / checkoutFields
      Added value: +{
      +  "description": "Custom checkout questions the buyer answers (name, address, specs/customisations…). Their answers are attached to the order and sent to the seller.",
      +  "items": {
      +    "additionalProperties": false,
      +    "properties": {
      +      "key": {
      +        "type": "string"
      +      },
      +      "label": {
      +        "type": "string"
      +      },
      +      "options": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "placeholder": {
      +        "type": "string"
      +      },
      +      "required": {
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "enum": [
      +          "text",
      +          "textarea",
      +          "number",
      +          "email",
      +          "phone",
      +          "select"
      +        ],
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "key",
      +      "label",
      +      "type"
      +    ],
      +    "type": "object"
      +  },
      +  "type": "array"
      +}
    • changedInput schema / properties / coverType / enum
      Previous value: -[
      -  "emoji",
      -  "image",
      -  "color",
      -  "gradient"
      -]New value: +[
      +  "none",
      +  "emoji",
      +  "image",
      +  "color",
      +  "gradient"
      +]
    • addedInput schema / properties / originalPriceMinor
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "integer"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "description": "Optional compare-at / 'was' price (kobo), shown struck through. Must be ≥ current price."
      +}
    • changedInput schema / properties / priceMinor / description
      Previous value: -"Price. Amount in kobo (minor units): ₦1 = 100. Minimum ₦500 = 50000."New value: +"Current price (charged). Amount in kobo (minor units): ₦1 = 100. Minimum ₦500 = 50000. Set 0 for a free product (no payment)."
    • changedInput schema / properties / theme / description
      Previous value: -"Per-product theme: { bg, accent, text, mode: 'light'|'dark' } (hex colours)"New value: +"Per-product theme: { bg, accent, text (hex), mode: 'light'|'dark', layout: 'hero'|'side', coverAspect: '16/10'|'3/2'|'1/1'|'4/5' }"
  4. Changed5 schema fields changed
    • addedInput schema / properties / content
      Added value: +{
      +  "description": "Rich 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 {}",
      +  "type": "array"
      +}
    • addedInput schema / properties / coverColor
      Added value: +{
      +  "description": "Cover colour (hex) for 'color'/'gradient' cover types",
      +  "type": [
      +    "string",
      +    "null"
      +  ]
      +}
    • addedInput schema / properties / coverColor2
      Added value: +{
      +  "description": "Second colour (hex) for 'gradient' cover",
      +  "type": [
      +    "string",
      +    "null"
      +  ]
      +}
    • addedInput schema / properties / coverType
      Added value: +{
      +  "description": "How the cover renders",
      +  "enum": [
      +    "emoji",
      +    "image",
      +    "color",
      +    "gradient"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / theme
      Added value: +{
      +  "additionalProperties": {
      +    "type": "string"
      +  },
      +  "description": "Per-product theme: { bg, accent, text, mode: 'light'|'dark' } (hex colours)",
      +  "type": "object"
      +}
  5. Added

TDQS

B3.4/5.0
Behavior3/5

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

Annotations are all negative (readOnlyHint=false, destructiveHint=false), so they say little about behavior. The description adds partial-update context via 'any field', implying you can change one field without resubmitting all. However, it does not disclose side effects, validation interactions, or response behavior. 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?

A single, front-loaded sentence with no filler. The ellipsis efficiently signals additional updatable fields without enumerating all 30. Every word earns its place.

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

Completeness2/5

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

For a 30-parameter mutation tool with no output schema and no usage guidance, one sentence is insufficient. Missing context includes whether the update is partial or full replacement, what the tool returns, the prerequisite of an existing product, and field interaction constraints. The detailed schema mitigates but does not cover tool-level behavior.

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% — every parameter has a description. The tool description only lists a few example fields (price, delivery, cover, enabled, fee payer) and adds no meaning beyond what the schema already provides, so baseline 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 uses a specific verb ('Update') and resource ('product') and clarifies scope as 'any field' with concrete examples. This clearly distinguishes it from create/get/delete product tools and the many other update_* tools by naming the product resource.

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

Usage Guidelines2/5

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

The description only implies the obvious use case (updating product fields). It gives no guidance on when to prefer related tools like neuron_create_product, neuron_duplicate_product, or neuron_add_product_codes, and no exclusions or prerequisites are mentioned.

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