Skip to main content
Glama
Mnehmos
by Mnehmos

list

Browse D&D 5e spells, monsters, and other resources by type with optional filters. Results include frontend web URLs.

Instructions

List resources of a type with optional filters. All results include frontend web URLs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
crNoFor monsters: filter by challenge rating
typeNoFor monsters: filter by creature type
levelNoFor spells: filter by spell level (0-9)
limitNoMax results (default: 20, max: 100)
offsetNoPagination offset
schoolNoFor spells: filter by school (Evocation, etc.)
document_slugNoFilter by source book
resource_typeYesType of resource (required)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden. It discloses one useful non-schema fact — that results include frontend web URLs — but says nothing about read-only nature, ordering, pagination behavior, or rate limits, leaving a fair amount undisclosed for a fully unannotated tool.

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, front-loaded with the core action, and the second sentence delivers a distinct piece of return-value information rather than restating the first.

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

Completeness3/5

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

With 8 parameters fully documented in the schema and no output schema, the description is adequate but thin. It partially compensates for the missing output schema by noting web URLs, but leaves filter-combination behavior and sibling routing unaddressed.

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%, including enum values and per-filter notes (cr, type, level, school), so the schema already does the heavy lifting. The description adds nothing about parameter meaning, making the baseline 3 appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('List') and resource ('resources of a type'), so an agent knows this is a collection-listing operation. It does not distinguish itself from siblings like 'search', 'get', or 'list_documents', which is the main gap keeping it from a 5.

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

Usage Guidelines2/5

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

No indication of when to use this versus 'search' or 'get', no mention of prerequisites, and no stated constraints on combining filters. The only guidance is the word 'optional' about filters, which is inferred from the schema anyway.

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