Skip to main content
Glama
holycube

game-narrative-mcp

by holycube

Check Knowledge

check_knowledge

Ensures narrative consistency by verifying that event assumptions are covered by reveals.

Instructions

检查事件 assumes 是否被 reveals 覆盖

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idNo
project_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.1

TDQS

D1.3/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure, and it discloses nothing: no statement of what is validated, what a failure looks like, whether it mutates state, or what permissions or prerequisites apply.

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

Conciseness2/5

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

It is short, but that brevity is under-specification rather than conciseness, and the mixed-language phrasing leaves the meaning ambiguous rather than front-loading a clear purpose.

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 two-parameter validation tool with no annotations and no output schema, the description provides nothing an agent needs to invoke it correctly; it is effectively unusable as a selection signal.

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% for both event_id and project_id. The description's only clue is the word 'event' (事件), and it says nothing about project_id or the relationship between the two parameters.

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 is a garbled phrase mixing Chinese and English ('检查事件 assumes 是否被 reveals 覆盖') that gestures at event/reveal coverage checking but never states a clear verb+resource. An agent cannot reliably determine what this tool does or how it differs from siblings like check_canon, check_thread_health, or get_player_knowledge_state.

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?

There is no indication of when to use this tool, when not to, or which sibling to prefer. With roughly 60 sibling tools including several other 'check_*' validators, the absence of routing guidance is a serious gap.

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