Skip to main content
Glama

List scenes

list-scenes
Read-onlyIdempotent

List a Foundry VTT world's scenes with IDs, names, active status, dimensions, grid, background, and counts of walls, tokens, lights, and sounds. Use a name filter to narrow results.

Instructions

List the scenes of the world with id, name, whether active, size, grid size, background and how many walls, tokens, lights and sounds each holds. filter narrows by a part of the name, in any case.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filterNoOnly scenes whose name contains this text, in any case
include_active_onlyNoOnly the scene that is active for everyone

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv14.2609.4

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds useful behavioral detail by specifying the output fields, including object counts, and clarifying that name filtering is case-insensitive.

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 a single front-loaded sentence with no filler. It states the resource, lists the returned fields, and then gives the filtering behavior, which is exactly the right amount of detail.

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 a read-only listing tool with two optional parameters and no output schema, the description supplies the output shape and the important filter behavior. Annotations cover the safety profile and the schema covers include_active_only, so nothing needed for a correct call is missing.

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?

The input schema fully documents both parameters, so the description is not required to carry parameter meaning. The description only restates filter's substring behavior and does not add new semantics for include_active_only beyond the schema, so 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 names a specific verb ('List'), a resource ('scenes of the world'), and enumerates the exact returned fields (id, name, active, size, grid size, background, and counts). This clearly separates it from scene-related siblings like get-current-scene and list-scene-folders.

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 intended use is evident: an agent should use this when it needs an overview of scenes, with optional name filtering and active-only filtering. It does not explicitly name alternatives or say when not to use it, but the context is clear enough for a list operation.

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

Deploy Server

Other Tools