mcp-guild-wars-2
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-guild-wars-2Tell me about the Bifrost legendary staff."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@pipeworx/guild-wars-2
Guild Wars 2 API v2 MCP — keyless public endpoints (worlds, items, achievements, build, etc.).
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
Tools
worlds(ids?)— world listitems(ids?, page?, page_size?, lang?)— item lookupachievements(ids?, page?, page_size?, lang?)— achievementsprofessions(ids?, lang?)— professionscurrencies(ids?, lang?)— currenciesbuild()— current game build idquaggans()— Quaggan images (gag endpoint)wvw_matches(world?)— current WvW matchescommerce_prices(ids?)— bulk trading-post quotes for numeric item IDs (raw copper)commerce_listings(ids?)— trading-post order-book depth for numeric item IDsguild_wars_2_item_price(name?, item_id?, include_listings?)— live Trading Post price for a single item looked up by name ("Mystic Coin") or byitem_id. Returns highest buy order, lowest sell offer, quantity on each side and the spread, each as raw copper and a readable gold/silver/copper string, plus item name, rarity, type and icon.
Pass ids as a comma-sep string ("1,2,3"); omit for index.
Related MCP server: mcp-tcgdex
Money
Trading Post unit_price values are in copper. 100 copper = 1 silver, 100 silver = 1 gold, so
19944 copper renders as 1g 99s 44c. guild_wars_2_item_price returns both forms.
Item name → ID resolution
The official API has no item-name search: /v2/items/search returns 404, and /v2/items with
no ids returns ~70k bare IDs — far too heavy to scan per call. So guild_wars_2_item_price
resolves a name in three steps:
A curated name → ID map built into the pack (83 commonly traded items — Mystic Coin, Glob of Ectoplasm, T5/T6 fine materials, ores, ingots, wood, leather, cloth, ascended crafting mats, popular runes/sigils, charms/symbols, precursors, agony infusions). Case-insensitive, no extra request. Every ID in it was verified against
/v2/itemsand confirmed to carry a live Trading Post quote.Fallback:
api.datawars2.ie— a keyless third-party GW2 item index. This is an added dependency outside ArenaNet's control; its name filter is exact and case-sensitive, so the pack retries with title-cased variants, and the call is bounded by an 8s timeout.If neither resolves, the tool returns
{found:false, reason:'item_name_not_resolved', hint}telling the caller to passitem_id— it never guesses a different item.
Account-bound items (Pile of Bloodstone Dust, Charged Quartz Crystal, Mystic Forge Stone, …) have
no Trading Post quote and return {found:false, reason:'item_not_traded'}.
Data source
https://api.guildwars2.com/v2 — plus https://api.datawars2.ie for item-name fallback only.
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"guild-wars-2": {
"url": "https://gateway.pipeworx.io/guild-wars-2/mcp"
}
}
}What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/guild-wars-2/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Guild Wars 2 data" })The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Wynncraft MMO player + guild + leaderboard + item DB lookups.
GW1 build compiler: skill data, template code encode/decode, validation, hero roster. Read-only.
API Ninjas MCP — wraps the multi-endpoint API Ninjas data API (api-ninjas.com)
Gamedeals MCP — wraps CheapShark API (game deal aggregator, no auth required)
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables querying openFDA drug and device data via natural language through the Pipeworx MCP gateway.6MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying multi-language trading card game data (Pokémon TCG and more) through natural language or direct tools, integrated with Pipeworx MCP gateway.16MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying plant data from Plants of the World Online (Kew) via natural language using the Pipeworx MCP gateway.15MIT
- FlicenseAqualityBmaintenanceAn MCP server that answers Guild Wars 2 questions by searching the official wiki and GW2 API, with citations.19-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pipeworx-io/mcp-guild-wars-2'
If you have feedback or need assistance with the MCP directory API, please join our Discord server