Skip to main content
Glama
iRockyZhou

warcraftlogs-mcp

by iRockyZhou

Get talent import code

get_talent_import_code
Read-onlyIdempotent

Retrieve a player's talent import string from a Warcraft Logs fight report by providing report code and actor ID. Get the exact talent loadout for that encounter.

Instructions

Get the Retail talent import string WCL recorded for one player in one fight.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
regionNoAPI region for a bare report code. Full URLs select their own region.
reportYesA 16-character report code or supported report URL.
actorIDYes
fightIDNoFight ID, or "last". A selector in the report URL is used when omitted.
translateNo
accessModeNoauto uses user authorization when available; user requires it; public never uses it.auto

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds context about Retail and WCL-recorded data, which is helpful, but it does not discuss auth nuances, error cases, or the effect of the translate parameter beyond what annotations and schema provide.

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 sentence with no filler. The verb and object are front-loaded, and every phrase ('Retail', 'WCL recorded', 'one player in one fight') adds meaningful constraint.

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?

The description adequately covers the core purpose, scope, and output type ('talent import string') for a read-only retrieval tool. With no output schema, it could ideally mention null/not-found behavior, but the simplicity of the tool and the clarifying parameter schema keep the overall context complete enough.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 67%, so most parameters are already documented. The description adds a useful semantic link between 'one player in one fight' and actorID/fightID, but leaves translate and accessMode behavior entirely to the schema and parameter names.

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 names a specific resource ('Retail talent import string'), source ('WCL recorded'), and precise scope ('one player in one fight'). This clearly distinguishes it from other get_* siblings like get_combatant_info or get_casts, which target entirely different data.

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

Usage Guidelines3/5

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

The unique, narrowly framed purpose implies when to use the tool: whenever an agent needs a WCL talent import string for a specific player and fight. However, it does not explicitly mention alternatives or state when not to use it, so the routing is left to inference.

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