Skip to main content
Glama

Conduit Agentic Commerce

Get dispute path

order_dispute
Read-onlyIdempotent

Refund/chargeback/report paths for an order. Requires owning agent_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idYesOwning agent id (required for authorization)
order_idYesOrder id to resolve refund/chargeback/report paths for
session_tokenNoSession token from agent_authenticate — required whenever agent_id is passed

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
hintNo
nextNo
errorNo
detailNo
refundNo
order_idNo
chargebackNo
report_to_conduitNo

Schema Changelog

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

  1. Changed2 schema fields changed
    • removedOutput schema / properties / orderId
      Removed value: -{
      -  "type": "string"
      -}
    • addedOutput schema / properties / order_id
      Added value: +{
      +  "type": "string"
      +}
  2. Changed1 schema field changed
    • addedInput schema / properties / session_token
      Added value: +{
      +  "description": "Session token from agent_authenticate — required whenever agent_id is passed",
      +  "type": "string"
      +}
  3. Added

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already establish readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is carried by structured data. The description adds the requirement that the caller must own the agent_id, which is useful authorization context, but it does not go further into behavior such as error conditions or ownership verification.

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 short sentences carry the core purpose and the one requirement that matters for invocation. Every word earns its place, with the main action front-loaded before the authorization note.

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?

For a simple read-only query with fully described parameters and an output schema, the description is nearly complete: it states the resource and the key authorization requirement. The only notable omission is guidance about when to choose it over sibling order tools, but schema and annotations carry the remaining load.

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 order_id, agent_id, and session_token. The description reinforces the agent_id ownership requirement but adds no meaning beyond the parameter descriptions, matching the baseline 3 for full schema coverage.

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 names a specific resource — refund/chargeback/report paths — and pairs it with an order, so an agent can tell it is about retrieving dispute-related information. It lacks an explicit verb ('get' appears only in the title), and it doesn't name a sibling it is not, but the scope is unambiguous enough for the tool's simple purpose.

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 only guidance is the authorization prerequisite 'Requires owning agent_id,' which is a precondition rather than a selection rule. There is no statement of when to prefer this tool over order_events, order_track, or order_list, and no when-not-to-use guidance.

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.

Resources