Skip to main content
Glama

tibia_search

Read-only

Find Tibia pages whose name contains a substring, across all fourteen kinds of page (creature, item, npc, quest, spell, achievement, house, imbuement, charm, mount, outfit, book, world, update). Turns an approximate name into the exact page name tibia_get expects. Ordered shortest-name-first, so the closest match leads.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYesSubstring to match against page names, case-insensitive.
typesNoRestrict to these kinds of page. Defaults to all fourteen.
cursorNoOpaque cursor from a previous call.
include_inactiveNoInclude deprecated, event-only and unavailable pages.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultsYes
nextCursorNo
totalMatchesYes
indexGeneratedAtYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, lowering the safety-disclosure burden. The description adds genuinely useful behavior beyond the schema: substring semantics, all-fourteen-types scope, and the shortest-name-first ordering with the rationale that 'the closest match leads.' It does not disclose pagination behavior, though the cursor parameter's schema description partially covers that.

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?

Three sentences with the purpose front-loaded, and each sentence earns its place: purpose/scope, the tibia_get relationship, and ordering behavior. The enumeration of all fourteen page types in the first sentence is somewhat redundant with the schema's types enum, so it is not maximally concise, but there is no wasted or filler content.

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?

Because an output schema exists and readOnlyHint is annotated, the description does not need to explain return values or safety. It covers the operational facts an agent needs — substring semantics, scope, ordering, and the tibia_get contract — while the schema covers the cursor mechanism. The only meaningful gap is guidance on when the specialized finder siblings should be preferred.

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 80%, so the schema already documents query, types, cursor, and include_inactive, and the description partly restates the fourteen-type scope that the types enum already lists. The ordering statement adds slight interpretive value for how limit selects results, but it does not add meaningful new parameter meaning beyond what the schema provides.

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 clause states a specific verb ('Find'), resource ('Tibia pages'), and matching mechanism (substring), then enumerates all fourteen page types to establish full scope at a glance. It also explicitly distinguishes itself from its siblings by framing the tool as the step that 'Turns an approximate name into the exact page name tibia_get expects.'

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 tibia_get linkage provides clear context: use this when you have an approximate name that must be resolved before calling tibia_get. However, it gives no exclusions and does not contrast itself with the specialized tibia_find_creatures and tibia_find_items siblings, so routing between the general and specialized finders 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.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.