Skip to main content
Glama
iRockyZhou

warcraftlogs-mcp

by iRockyZhou

Check character subscriptions

check_character_subscriptions

Poll Warcraft Logs for new reports associated with character subscriptions and advance their cursors. Omit subscription ID to check all active subscriptions.

Instructions

Poll WCL for new reports and advance subscription cursors. Omit subscriptionID to check all subscriptions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
subscriptionIDNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.4/5.0
Behavior4/5

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

The description discloses the key behavioral trait: advancing subscription cursors, which implies state changes and explains why readOnlyHint=false and idempotentHint=false. It adds useful context beyond the annotations, such as the external polling nature and the fact that checking advances state.

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?

Two short sentences deliver the core action, the side effect, and parameter behavior with no filler. The most important behavioral detail (polling and cursor advancement) is front-loaded.

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 tool with a single optional parameter and no output schema, the description covers the necessary invocation details: what the tool does, what the optional parameter means, and how to check all subscriptions. It does not describe the response shape, but the absence of an output schema lowers that expectation.

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?

The parameter schema has no description and 0% coverage, so the description carries the burden. It explicitly explains the meaning of omitting subscriptionID and implies that providing it checks a single subscription. This is meaningful guidance for the one optional parameter.

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 uses a specific verb ('Poll WCL') and names the resource ('new reports') and the side effect ('advance subscription cursors'). It clearly differentiates this from sibling tools like list_character_subscriptions by emphasizing polling and cursor advancement rather than just listing subscriptions.

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 provides concrete usage context: omit subscriptionID to check all subscriptions. It does not explicitly name alternatives or exclusions, but the semantics are clear enough for an agent to know when to call this tool versus the read-only listing or subscription management tools.

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