Skip to main content
Glama
rpeters1430

poe2-mcp-server

by rpeters1430

List PoE2 characters

list_characters
Read-only

Retrieve character names from your authorized Path of Exile 2 account via GGG OAuth or poe.ninja fallback.

Instructions

List character names on the authorized PoE account (via official GGG API, or via poe.ninja public profile if GGG OAuth is not configured).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds genuinely useful behavioral context: it names the two underlying data sources (GGG API or poe.ninja) and the condition that selects between them. No contradictions with annotations.

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, front-loaded sentence conveys the core action, scope, and fallback behavior with no filler. Every clause earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only, zero-parameter tool, the description is nearly complete: it states what is listed, whose account, and how the data is sourced. It does not describe the return format, but the absence of an output schema and the phrase 'character names' make the expected result reasonably clear.

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?

This tool has zero parameters, so there are no parameter semantics to clarify. The baseline of 4 for a 0-parameter tool applies, and the description adds relevant scope context without needing to explain inputs.

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 states a specific verb and resource: 'List character names on the authorized PoE account'. It also clarifies the two possible data sources, which distinguishes it from sibling tools like import_poe_ninja_character or set_active_character.

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 on when the tool applies (listing character names from the authorized account) and specifies the API fallback condition. It does not explicitly name sibling tools as alternatives, but the context is sufficient for an agent to decide this is the listing tool.

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