Skip to main content
Glama
holycube

game-narrative-mcp

by holycube

Register Ending

register_ending

Register an ending condition for a narrative project, including required flags, axis thresholds, and when to resolve it (run end, meta checkpoint, or manual).

Instructions

注册结局条件

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
titleYes
min_axisNo
priorityNo
project_idNo
descriptionNo
resolve_whenNo
thread_phaseNo
requires_flagsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.1

TDQS

D1.5/5.0
Behavior1/5

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

No annotations and the description says nothing about what gets created or modified, what resolve_when semantics mean, thread phase interactions, or side effects on project state. For a mutation tool registering ending conditions, this leaves the agent blind.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

It is very short and front-loaded, but brevity here reflects under-specification rather than effective conciseness. No wasted words, but nothing earns its place either.

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

Completeness1/5

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

For a 9-parameter mutation tool with nested objects, zero schema description coverage, no annotations, and no output schema, the description is completely inadequate. It provides no semantic context needed to call this tool correctly.

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

Parameters1/5

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

Schema description coverage is 0% across 9 parameters including nested objects (min_axis, requires_flags) and an enum (resolve_when), yet the description provides no parameter meaning. This is a severe gap that the one-line description does nothing to address.

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

Purpose2/5

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

The description merely restates the tool name in Chinese ("注册结局条件" = "register ending condition"), which is a tautology rather than a specific statement of what the tool does. It doesn't distinguish from siblings like compare_endings, register_ending_axis, or map_ending_space, nor does it explain that it creates/persists an ending condition definition.

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

Usage Guidelines1/5

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

No guidance on when to use this tool versus alternatives is provided. With ~60 sibling tools including compare_endings, register_ending_axis, and map_ending_space, an agent would need to guess entirely.

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