Skip to main content
Glama
rpeters1430

poe2-mcp-server

by rpeters1430

Compare an item against currently equipped gear

compare_item
Read-only

Parse copied Path of Exile 2 item text and diff it against the character's currently equipped item in the matching slot to show what would change.

Instructions

Parse an item's full text (as copied from the game with Ctrl+C, or from a trade site) and diff it against whatever the character currently has equipped in the matching slot (via GGG API or active PoB / poe.ninja build).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slotNoEquipment slot to compare against (e.g. 'Weapon', 'Ring2'). Inferred from the item's base type if omitted; pass explicitly to disambiguate rings/weapon-vs-offhand.
itemTextYesFull item text, including the 'Rarity:'/'--------' section markers
characterNameNoDefaults to the current active character if omitted

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already mark the tool as read-only and open-world safe. The description adds behavioral context beyond that: it parses the item text, infers the matching slot, and pulls equipped data from GGG API or an active PoB / poe.ninja build. It does not describe failure modes or output shape, but the core behavior is transparent.

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 well-structured sentence that front-loads the action and input format, then adds source context in parentheticals. Every part earns its place with no redundant restatement of the title.

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?

The inputs and data sources are well covered, but there is no output schema and the description never states what the diff result looks like (stat comparison, text diff, upgrade recommendation). For an agent invoking this tool, the return contract is the main missing piece; the rest is adequately specified.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3. The description adds useful semantics beyond the schema by specifying exactly what 'itemText' means (Ctrl+C from game or trade site) and what 'equipped' is resolved against (GGG API, PoB, or poe.ninja build). This clarifies the most ambiguous parameter despite the schema already being documented.

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 names a specific verb-resource pair: parse an item's full text and diff it against currently equipped gear. It also clarifies the matching-slot mechanism and distinct data sources, which sets it apart from siblings like find_trade_upgrades and get_inventory.

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?

The description gives clear context for when to call the tool: when the user has item text pasted from the game or a trade site and wants a comparison against equipped gear. It does not explicitly name alternatives or when-not conditions, though no exclusion is strictly needed given how specific the scenario is.

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