Skip to main content
Glama

tibia_get

Read-only

Full detail for one named Tibia page of any kind: creature (with its loot table, abilities and max damage), item, npc, quest, spell, achievement, house, imbuement, charm, mount, outfit, book, world or update. Takes an exact page name — use tibia_search first if it is uncertain. Pass type to disambiguate a shared name. Creature abilities may carry an area: Grid of map tiles, row-major, as the caster faces. '.' unaffected tile, '#' effect tile, '@' the caster, '*' the target tile, digits 4-8 extra sprite layers (a second effect the scene draws), '?' an unrecognised value. effectTiles counts effect tiles only. effectOnCaster says whether the caster is caught in its own effect; it is stated by the wiki, not read off the grid.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesPage name, e.g. "Dragon Lord". Case-insensitive.
typeNoRestrict the lookup to one kind of page.
verbosityNo"detailed" adds extra descriptive columns.concise
include_inactiveNoInclude deprecated, event-only and unavailable pages. Applies to the requested page.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true, so the description wisely does not repeat that. It adds substantial non-obvious behavior: the full grammar of creature ability `area` grids, the meaning of effectTiles, and the caveat that effectOnCaster is wiki-stated rather than read from the grid. That is exactly the kind of context structured fields cannot convey.

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 and usage guidance are front-loaded, and the later area-grid passage is dense but not padded. Each clause adds a distinct semantic fact. It is longer than typical descriptions, but the length is justified by the genuinely complex output format it explains.

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 four parameters, 100% schema coverage, an output schema, and readOnly annotations, the description covers lookup semantics and the one deeply non-obvious output field. It does not describe missing-page behavior in prose, but that is not required given the output schema and the search-first instruction.

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 description coverage is 100%, so the baseline is 3. The prose adds meaning beyond the schema by explaining that `name` must be exact and that `type` resolves shared-name collisions. It does not add much for verbosity/include_inactive, but those are fully described in the schema.

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 opening sentence names the operation ('Full detail') and the resource ('one named Tibia page') and enumerates every page kind, clearly distinguishing it from the search/find siblings. It even routes to tibia_search for uncertain names, so an agent can immediately tell what tibia_get is for.

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

Usage Guidelines5/5

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

The description explicitly says to use tibia_search first when the page name is uncertain and to pass `type` to disambiguate shared names. This gives concrete decision rules for the main usage choices without leaving them to inference.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.