Skip to main content
Glama
GlacianNex

POE2MarketMCP

by GlacianNex

refresh_prices

Force a hard refetch of currency prices from poe.ninja, bypassing cache to get current published data when results are stale or after downtime.

Instructions

Fetch currency prices from poe.ninja right now, bypassing the schedule.

This is a hard refetch: it bypasses poe.ninja's CDN cache to reach the origin, rather than re-reading the cached response the hourly sweep uses. Worth calling when stale: true appears on a result, or after the machine has been asleep or offline. Note poe.ninja recomputes its own numbers about hourly, so a forced refetch guarantees the freshest published data — not necessarily different data.

Hits poe.ninja only; it does not touch GGG's trade API, so it cannot affect the player's in-game trade rate budget.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
leagueNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations, the description fully discloses behavior: it bypasses the CDN cache, hits poe.ninja origin, does not touch GGG's trade API, and thus cannot affect the player's in-game trade rate budget. This is exactly the kind of context an agent needs for a mutating-like operation.

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?

Three short paragraphs, each adding value: core purpose, technical nuance with usage conditions, and safety/caveat. Front-loaded with the main action, no redundant phrasing.

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?

Behavioral context is thorough, but the league parameter is completely undocumented, which is a significant omission for a tool that likely needs to know which league's prices to refresh. The output schema exists, so return format is not needed, but parameter documentation is essential.

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 one optional parameter 'league' with 0% description coverage, and the description never mentions it. The agent is left to guess what league values are acceptable or whether it's required for the refresh. This is a clear gap.

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 clearly states it fetches currency prices from poe.ninja immediately, bypassing the schedule. It distinguishes itself from the hourly sweep and implies it's a refresh operation, differentiating it from sibling tools like get_price or get_movers which fetch or analyze data rather than force-refreshing.

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

Usage Guidelines5/5

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

Explicitly states when to call: when stale:true appears or after sleep/offline. Also warns that a forced refetch may not yield different data, setting expectations. It doesn't name alternatives but the contrast with the hourly sweep implies when not to use it.

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