Skip to main content
Glama

Conduit Agentic Commerce

Update agent profile

agent_update

Patch handle, rails, default_destination (postcode required for ships-to), friendly_name, human_description, role_description, avatar (glyph+gradient or small image), business profile, or preferences. Set avatar only if the human chose it. Does not accept permissions — a human enables capabilities in Hub Agent settings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
avatarNoIdentity mark. Omit unless the human chose it — server assigns a random invader+gradient. { kind:"glyph", glyph:"invader"|emoji, tint?:invader color, gradient } or { kind:"image", src }. Tint only for invader. Do not store in the credentials file.
handleNoNew display handle (lowercase kebab)
agent_idYesAgent id to patch, e.g. agt_...
preferencesNoPreferences patch
friendly_nameNoHuman-facing label (≠ handle), e.g. EU Restock Bot
payment_railsNoReplacement rail key list
session_tokenNoSession token from agent_authenticate — required whenever agent_id is passed
business_profileNoBusiness profile patch
role_descriptionNoSelf-instruction for this agent only, e.g. manage EU supplies
human_descriptionNoDescription shown to humans on the org dashboard
default_destinationNoShipping destination; must include postcode for accurate search

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
hintNo
nextNo
errorNo
nonceNo
avatarNo
detailNo
handleNo
persistNo
agent_idNo
mandatesNo
terminalNo
challengeNo
created_atNo
public_keyNo
reputationNo
open_ordersNo
permissionsNo
preferencesNo
organizationNo
total_ordersNo
friendly_nameNo
payment_railsNo
organization_idNo
business_profileNo
role_descriptionNo
human_descriptionNo
destination_sourceNo
default_destinationNo
effective_destinationNo

TDQS

A3.8/5.0
Behavior4/5

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

The annotations already indicate this is a mutating operation that is not idempotent and not destctive, and the description adds meaningful behavior beyond that: avatar must only be set if the human chose it, and permissions are explicitly rejected. It also discloses the default_destination postcode requirement. This is strong supplementary context, though it does not detail response or side effects.

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?

The description is tight and front-loaded: the first sentence enumerates the patchable fields in one efficient list, the second gives a critical condition for avatar, and the third gives a hard exclusion about permissions. Every sentence earns its place and there is no fluff or repetition.

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?

Given the high parameter count, full schema coverage, and presence of an output schema, the description is largely complete. It covers the key nuance (avatar only when human-chosen), the default_destination postcode requirement, and the permissions boundary. The only notable gap is not explicitly routing to sibling tools, but that is minor given the tool's clear patch semantics.

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 all 11 parameters well. The description adds a little extra semantic value—such as the avatar selection rule and the postcode requirement for ships-to—but mostly reiterates what the schema already says. Baseline 3 is appropriate because the schema carries the parameter documentation burden.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Patch') and names the resource (agent profile) plus the exact set of mutable fields, which makes the tool's job unambiguous. It does not explicitly name sibling tools like agent_create or agent_notify, but the scope is clear enough that it should not be confused with them.

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 updating an existing agent's profile rather than creating or authenticating, and it gives a clear exclusion: it does not accept permissions and those are handled by a human in Hub Agent settings. However, it does not explicitly say 'use agent_create to create a new agent' or provide other direct sibling routing, so usage guidance is mostly implied.

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

A3.9/5.0
Disambiguation4/5

Most tools map to a distinct resource/action, and the descriptions explicitly call out boundaries (e.g., agent_notify targets Hub users while agent_outreach targets external addresses). A few closely related pairs such as supply_delivery/supply_details and order_events/order_track could still cause misselection despite the clarifying notes.

Naming Consistency4/5

Tool names follow a clear lowercase snake_case resource-prefix pattern across agent_, order_, payment_, and supply_. The pattern is not perfectly uniform because some names are noun-only (agent_organization, payment_methods, supply_details) and order_update_status is a longer compound.

Tool Count4/5

At 19 tools, the set is slightly above the ideal range, but the count is justified by four distinct subdomains: agent identity/communication, orders, payments, and supply. No obvious filler tools are present.

Completeness4/5

The surface covers the main commerce workflow well: agent setup/auth, search and delivery probes, order execution/tracking/feedback/disputes, and payment mandates/methods. Minor gaps like no agent deletion, no payment-method disable, and no standalone order-detail tool are workable or arguably out of scope.

Resources