Skip to main content
Glama
Redseb
by Redseb

batch_create

Create many RPG Maker MZ database records in one call and file write. Use in place of sequential create_* calls for casts, loot tables, or skill lists; sequential IDs allow sibling references.

Instructions

Create many database records of one type in a single call and a single file write — the batch sibling of create_actor/create_item/create_weapon/create_armor/create_skill/create_enemy/create_state/create_class. Each entry in records takes the same fields its single create_* tool accepts (only name is required for most; omitted fields use the editor's defaults). Ids are allocated sequentially from the current max, so a record can reference a sibling created earlier in the same batch. Use this instead of N sequential create_* calls when authoring a cast, a loot table, or a skill list. Returns { type, count, created, warnings? } (classes are summarized like create_class; enemy battlerName misses are warnings, never blocked). Throws — writing nothing at all — if any record references a database id that does not exist, naming the offending records[i].

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesWhich database the records are appended to
dryRunNoPreview only: return a diff of what would change without writing to disk.
recordsYesThe records to create, each shaped like the matching create_* tool's arguments (e.g. for type "actor": { name, classId?, ... })
Behavior5/5

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

With no annotations provided, the description carries full burden, and it excels. It discloses atomic failure ('Throws — writing nothing at all'), sequential id allocation ('Ids are allocated sequentially from the current max'), the return shape (`{ type, count, created, warnings? }`), and warning behavior ('enemy battlerName misses are warnings, never blocked'). These are critical behavioral nuances beyond simple schema info.

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?

Four dense sentences, each earning its place. The first sentence states purpose, the second explains record semantics and id behavior, the third gives usage guidance, and the fourth covers return/error behavior. No filler or repetition.

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?

This is a complex batch write tool with no output schema. The description covers return format, error conditions, atomicity, id allocation, and warning semantics. It also references sibling tools for record shape clarification. This is fully complete for an agent to select and invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema already covers 100% of parameters with descriptions, providing a strong baseline. The description adds meaningful semantics: each entry in `records` follows the matching create_* tool's field shape, only `name` is required for most, and omitted fields use defaults. It also explains how the `type` parameter relates to record shape. This goes beyond schema, though the schema already does much of the work.

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 specific verb and resource: 'Create many database records of one type in a single call and a single file write.' It explicitly identifies itself as the batch sibling of the single-record create_* tools, distinguishing it from those alternatives and clearly conveying its purpose.

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

Usage Guidelines5/5

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

The description provides explicit when-to-use guidance: 'Use this instead of N sequential create_* calls when authoring a cast, a loot table, or a skill list.' This also indicates the alternative approach (sequential calls) and the scenarios where batching is preferable.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Redseb/rpgmaker-mz-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server