Skip to main content
Glama
dearlordylord

D&D 5e SRD Oracle

Select Stat Block

select_stat_block
DestructiveIdempotent

Select an SRD stat block for a battle session and store its ID in the MCP session for subsequent stateful calls.

Instructions

Select an SRD Stat Block for the battle session. This stores only the Stat Block id in the MCP session.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statBlockIdYesSRD Stat Block id from list_stat_blocks.
playSessionIdYesPlay Session handle returned by create_play_session for follow-up stateful calls in the same local process or authenticated account.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already communicate mutability and destructiveness, so the bar is lower. The description adds useful behavioral context by stating it stores only the Stat Block id in the MCP session, which clarifies the scope of state change. No contradiction with the annotations is present.

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 accomplish the task: the first states the primary action and context, the second clarifies the precise persistence behavior. There is no filler or repetition.

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?

For a simple two-parameter selection tool with an output schema and rich annotations, the description is nearly complete. It could optionally mention the expected workflow position, but the schema already supplies the key prerequisites, so nothing essential 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?

Schema coverage is 100%, and both parameters already have rich descriptions: statBlockId is sourced from list_stat_blocks and playSessionId is tied to create_play_session. The description itself adds no parameter-level detail, so the baseline of 3 applies.

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 uses a specific verb ('Select') and resource ('SRD Stat Block'), and adds the context 'for the battle session' and the side effect of storing only the id. This clearly distinguishes it from browsing tools like list_stat_blocks or inspection tools like inspect_catalog_unit.

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 phrase 'for the battle session' gives clear context for when this tool applies, and the side-effect clarification helps distinguish selection from mere listing. It does not explicitly name alternatives or exclusions, but the intended use case is evident from the description and sibling context.

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