guild_wars_2_item_price
Pack: guild-wars-2 · Endpoint: https://gateway.pipeworx.io/guild-wars-2/mcp
Current Guild Wars 2 Trading Post price for one item, looked up by item name (e.g. “Mystic Coin”, “Glob of Ectoplasm”) or by numeric item_id. Answers “what is X selling for”, “how much is X worth right now”, “what is the trading post price of X”. Returns the highest standing buy order and the lowest sell offer, the quantity available on each side, the buy/sell spread, and every price both as raw copper and as a readable gold/silver/copper string, plus the item name, rarity, type and icon. Prices are live Trading Post data from the official Guild Wars 2 API.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | Item name as it appears in game, e.g. “Mystic Coin”. |
item_id | number | no | Numeric Guild Wars 2 item ID, e.g. 19976. Takes precedence over name. |
include_listings | boolean | no | Set true to also return the top order-book tiers on each side (default false). |
Example call
Arguments
{
"name": "Mystic Coin"
}
curl
curl -X POST https://gateway.pipeworx.io/guild-wars-2/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"guild_wars_2_item_price","arguments":{"name":"Mystic Coin"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('guild_wars_2_item_price', {
"name": "Mystic Coin"
});
More examples
{
"item_id": 19721
}
{
"name": "Mystic Coin",
"include_listings": true
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"guild-wars-2": {
"url": "https://gateway.pipeworx.io/guild-wars-2/mcp"
}
}
}
See Getting Started for client-specific install steps.