Skip to main content
Glama
Jack-mi
by Jack-mi

record_procedural_doc

Log all procedural documents from investigation onward, capturing doc type, number, time, location, and summary with precise volume and page citations.

Instructions

登记程序性文书(第六部分)。包含从被调查至当前的全部程序性文书,需含文号、时间、地点。

参数结构(args 字段): {doc_type(必填): 文书类型:立案决定书/拘留/逮捕/取保候审/监视居住/搜查/扣押/鉴定意见/移送起诉等; volume(必填): 卷宗; page_start(必填): 起始页; page_end(必填): 结束页; doc_no(必填); time(必填); location(必填); fact_group(必填); content_summary(必填)}

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
argsNo
case_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.3

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It explains what data to include but not how the tool behaves on invocation, such as whether it appends, overwites, validates, or has side effects. As a write operation, this is a significant gap.

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

Conciseness4/5

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

The description is organized into purpose and parameter structure, with no wasteful filler. The long enumerations are justified because the schema does not document the nested args. It could be tighter, but it is dense and scannable.

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 tool with an opaque args schema, the description gives enough information to construct a correct call: case_id comes from the schema, args structure comes from the description, and an output schema is present. It lacks some workflow/order context, but the essential invocation details are covered.

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

Parameters5/5

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

The input schema leaves args as an opaque free-form object with no property documentation. The description fully compensates by enumerating every expected field, marking required ones, listing doc_type options, and explaining the semantic content of the args object.

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

Purpose4/5

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

The description clearly states the verb '登记' and the resource '程序性文书', with a defined scope ('从被调查至当前'). It is specific enough to distinguish it from evidentiary or indictment tools, though it does not explicitly name any sibling for contrast.

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

Usage Guidelines3/5

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

The scope statement implies this tool is for registering procedural documents across the case timeline, but it gives no explicit when-to-use versus when-not-to-use instructions. With many record_* siblings available, explicit alternative routing would be valuable.

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