Skip to main content
Glama
cornndawwg

poe2-build-planner

by cornndawwg

Search skills

search_skills
Read-only

Find active and spirit skill gems by tags, skill types, name words, or description text. Filter by weapon, level, and item skills; rank results with preferred terms.

Instructions

Find active and spirit skill gems by gem tags, skill types, name words or description text. require terms must all match tags/types/name; text words must all appear in the skill's description (e.g. ["poison"], ["slam"]); prefer terms rank results. Useful terms: fire, cold, lightning, chaos, physical, spell, attack, projectile, area, melee, slam, strike, minion, bow, crossbow, mace, spear, quarterstaff, totem, curse, aura, herald, channelling, duration, persistent, buff. Each result has the gemId, tags, skill types, description, weapon requirements, earliest level and where it comes from (uncut-gem or item). Use gem_details for one gem's full details and compatible_supports for its supports.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textNoWords that must all appear in the description, e.g. ["poison"]
limitNo
preferNoRaise ranking, e.g. ["projectile", "area"]
weaponNoOnly skills usable with this weapon, e.g. "bow", "mace"
requireNoAll must match tags/types/name, e.g. ["fire", "spell"]
availableByNoOnly skills usable by this character level (for leveling)
includeItemSkillsNoAlso include skills granted by items (weapon bases, uniques)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.0

TDQS

A4.3/5.0
Behavior4/5

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

readOnlyHint=true already covers the safety profile, so the bar is lower. The description adds real behavioral value by enumerating the fields each result contains (gemId, tags, skill types, description, weapon requirements, earliest level, uncut-gem/item origin) and by spelling out how each filter class behaves.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Purpose is front-loaded, followed by filter semantics and routing. The long 'useful terms' enumeration is dense but functional as a value hint; otherwise every sentence earns its place with no redundancy.

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?

With no output schema, the description compensates by describing the result fields, and it covers filter behavior and sibling routing. Only minor gaps remain (e.g. limit/pagination behavior), but the definition is complete enough to invoke correctly.

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?

Schema coverage is high (86%), setting a baseline of 3, but the description meaningfully refines the key filters: it clarifies that require terms must all match tags/types/name, text words must all appear in the description, and prefer only affects ranking. The 'useful terms' list additionally helps the agent choose valid filter values.

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 ('Find active and spirit skill gems') and scopes it by the four search axes (gem tags, skill types, name words, description text). It explicitly distinguishes itself from sibling tools gem_details and compatible_supports, so an agent can route without opening a schema.

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?

It clearly explains the three filter modes (require vs text vs prefer) and routes to alternatives: 'Use gem_details for one gem's full details and compatible_supports for its supports.' It gives strong context for use but stops short of explicit when-not-to-use conditions.

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