poe2-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| poe2_currency_pricesA | Get current currency exchange rates for Path of Exile 2 from poe.ninja. Returns prices of all currencies with chaos-equivalent values computed from exchange rates. Data refreshes approximately every hour on poe.ninja. Args:
Returns: List of currencies with their exchange values and trade volumes. Examples:
|
| poe2_currency_checkA | Look up the current value of a specific currency in Path of Exile 2. Searches by partial name match (case-insensitive) against currency ids and reference item names. Args:
Returns: Matched currency with its chaos-equivalent value and trade volume. Examples:
|
| poe2_item_priceA | Look up the current market price of an item in Path of Exile 2 from poe.ninja. Searches by partial name match across exchange categories (Currency, Fragments, Essences, Soul Cores, Idols, Runes, etc.). Args:
Returns: Matching items with chaos-equivalent values and trade volumes. Examples:
|
| poe2_exchange_topA | Get the most valuable items in a given exchange category in Path of Exile 2. Args:
Returns: Top N most valuable items sorted by chaos-equivalent value. |
| poe2_wiki_searchA | Search the Path of Exile 2 community wiki (poe2wiki.net) for game mechanics, items, skills, and other information. Args:
Returns: Up to 5 matching wiki articles with titles and snippets. Examples:
|
| poe2_wiki_pageA | Get the full content of a specific wiki page from poe2wiki.net. Use poe2_wiki_search first to find the exact page title, then use this to read the full content. Args:
Returns: Full wikitext content of the page (may be long — truncated at 8000 chars). |
| poe2_db_lookupA | Look up detailed game data from poe2db.tw — items, gems, mods, passives. poe2db.tw contains datamined information directly from game files, including exact stat values, gem scaling, mod tiers, and more. Also useful for finding Russian translations of game terms: use lang="ru" to get Russian page. IMPORTANT: Skills, passives, and ascendancy nodes with ranks use Roman numerals in poe2db, not Arabic. Convert rank numbers: 1→I, 2→II, 3→III, 4→IV, 5→V. Always include the rank suffix if the user mentions a specific rank. Args:
Returns: Raw page content from poe2db (HTML stripped to text, truncated at 6000 chars). Examples:
|
| poe2_meta_buildsA | Get class distribution statistics for Path of Exile 2 from poe.ninja. Shows the most popular classes with their percentage share and trend direction among indexed ladder characters. Args:
Returns: Class distribution with percentages and trend indicators. Examples:
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Most tools have distinct purposes, but there is some overlap between poe2_currency_check and poe2_item_price, as both can look up currency prices with similar arguments. Additionally, poe2_currency_prices and poe2_exchange_top both provide currency-related data, which could cause confusion. However, descriptions help clarify their specific functions, preventing major misselection issues.
All tool names follow a consistent snake_case pattern with the prefix 'poe2_' followed by a descriptive verb_noun combination (e.g., currency_check, wiki_search). This uniformity makes the tool set predictable and easy to navigate, with no deviations in naming style.
With 8 tools, the server is well-scoped for providing Path of Exile 2 game data, covering currency, items, builds, and wiki information. Each tool serves a clear purpose without redundancy, making the count appropriate for the domain and typical use cases.
The tool set covers key aspects of Path of Exile 2 data retrieval, including currency, item prices, game data, meta builds, and wiki access. Minor gaps exist, such as lack of tools for player-specific data or trade listings, but core workflows are well-supported, and agents can effectively use the provided tools for common queries.