Skip to main content
Glama
GlacianNex

POE2MarketMCP

by GlacianNex

find_multi_step_arbitrage

Find profitable multi-hop currency trade loops in Path of Exile 2, using direct pair rates with spreads filtered to surface actionable leads.

Instructions

Find profitable trade loops, e.g. chaos -> exalted -> divine -> chaos.

Pure analysis over already-collected direct pair rates: no API calls, so it is free to run as often as you like.

Only direct pair quotes can produce a cycle. Cross-rates synthesised through the base currency pay the spread on every leg, so a loop built from them always loses — profit appears only where the market's own chaos->divine rate has drifted from chaos->exalted->divine.

Each leg's rate has already paid its own spread and has had junk listings filtered out, so a gain above 1.0 is real profit rather than mid-price arithmetic. min_depth bounds how much can actually be pushed through the tightest leg.

As with all trades here: these complete by whisper and a manual trade window. Every counterparty must be online and willing. Treat results as leads, and note that a four-hop loop needs four separate humans to answer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
leagueNo
max_hopsNo
min_profit_pctNo
max_age_minutesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior5/5

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

With no annotations present, the description takes full responsibility for behavioral disclosure. It explains that the tool does no live API calls, that each pair rate already paid its spread, that junk listings are filtered, that min_depth limits pushable amounts, and that trades depend on human counterparties. This is a very transparent explanation of the tool's true nature, going beyond typical simple statements.

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 longer than average, but every sentence adds meaningful detail—purpose, cost model, technical constraints, and execution method. It is front-loaded with the actual purpose and then covers nuanced nuances. The length is justified by the conceptual complexity of multi-step arbitrage, though the redundant mention of the example after the first sentence slightly adds wordiness.

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 existence of an output schema, the description does not need to detail return structures. It covers the core behavior and important cautions. The omission of any parameter-level detail, combined with the phantom 'min_depth' reference, leaves a small but meaningful gap in an otherwise thorough description.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has zero parameter descriptions (coverage 0%), and the description does not explain the meaning of any of the five parameters. It mentions 'min_depth', which is not present in the input schema, so an agent cannot be sure whether that refers to an internal value or a missing parameter. The parameter names are somewhat self-explanatory, but the description does nothing to clarify their behavior or defaults.

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 opens with a specific verb–object pair, 'Find profitable trade loops', and gives a concrete example (chaos -> exalted -> divine -> chaos). This clearly distinguishes it from sibling tools like 'find_arbitrage' by showing the multi-hop scope. An agent can tell exactly what the tool does without opening the schema.

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

Usage Guidelines4/5

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

It provides clear context for when to use the tool: it is pure analysis over already-collected rates, makes no API calls, and can be run freely. It also warns that trades complete via whisper, so results are leads rather than guaranteed executions. However, it does not explicitly mention a comparable sibling or state when to prefer this over a simpler arbitrage tool, so it lacks formal differentiation.

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