Skip to main content
Glama

Embers: Tabletop RPG Toolkit

Search vault items

vault_search_items
Read-onlyIdempotent

Search the item library the user has access to (stock items plus their own house items). Use this to locate a weapon, armor piece, tool, adventuring gear entry, or magic item by name, type, or ruleset. Defaults to a compact summary shape (identification + summary + weight + cost + publisher / source); pass detail: 'full' to receive each item's full description and properties array inline.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoSubstring match on item name (case-insensitive). Use `^name$` for an exact match.
skipNoPagination offset; pair with `limit` to walk results.
sortNoComma-separated field list. Prefix with `-` for descending (e.g. `-updatedAt,name`).
typeNoItem type (substring, case-insensitive). Vault item types are ruleset-specific strings. Common 5e / 5e24 examples: 'Weapon', 'Armor', 'Tool', 'Adventuring Gear', 'Wondrous Item'.
limitNoPage size; defaults to 50 when omitted. Hard cap of 200.
stockNotrue = official content only; false = user-authored only; omit to include both.
detailNoResponse shape. 'summary' (default) returns identification + summary fields; 'full' returns the complete document shape (every field inline) that non-MCP clients receive by default.summary
rulesetNoRuleset code (e.g. '5th Edition', '5e24', 'PFRPG', 'Savage Worlds', 'Universal').

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultsNo
paginationNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already cover read-only, idempotent, non-destructive behavior, so the description does not need to restate safety. It goes further by disclosing the default compact summary shape (identification + summary + weight + cost + publisher/source) and the `detail: 'full'` behavior that expands to the complete document. This adds real behavioral context beyond the structured annotations.

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?

The description is three sentences with no filler: scope, use case, and response-shape behavior are each covered concisely. It is front-loaded with the core search purpose before introducing the output detail option.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For an 8-parameter search tool with no required parameters, full schema coverage, and an output schema, the description provides enough context to select and invoke it correctly. It explains what the tool searches, what the default result shape is, how to get full results, and who is in scope.

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 100%, so the schema already documents every parameter, including the `^name$` exact-match syntax, type examples, pagination, and sorting. The description reinforces how `detail` changes the response but does not add meaning beyond what the schema already provides; baseline 3 is appropriate.

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 opens with a clear verb and resource: 'Search the item library the user has access to.' It also names the concrete item categories (weapon, armor, tool, adventuring gear, magic item) and the search dimensions (name, type, ruleset), making it easy to distinguish from sibling search tools like vault_search_characters, vault_search_monsters, vault_search_spells, and vault_search_rules.

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 states the intended use case explicitly ('Use this to locate a weapon, armor piece, tool, adventuring gear entry, or magic item...') and clarifies the scope (stock items plus the user's own house items). It does not explicitly name sibling alternatives to exclude, but the domain boundary is clear enough for an agent to route correctly.

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.

Resources