Skip to main content
Glama
tanbaohui666-hash

orange_island_commerce_data

导出经营证据

evidence_export
Read-onlyIdempotent

Convert an analysis result into a structured evidence format for submission to evidence_add. Provide project ID, analysis type, summary, analysis object, and source report IDs.

Instructions

把一个分析结果包装为可交给 orange_island_core evidence_add 的证据结构。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
summaryYes
analysisYes
project_idYes
analysis_typeYes
source_report_idsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the fact that it produces an evidence structure for evidence_add, which clarifies the output's purpose but does not disclose any other behavioral traits like side effects, validation rules, or error conditions. Given annotations, this is adequate but not enriched.

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 a single, concise sentence that front-loads the core purpose. It avoids fluff and is easily parsed. However, it may be too terse given the complexity, but as a structural evaluation, it is efficient.

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?

The tool has five required parameters, a nested object, no output schema, and zero schema coverage in the description. The description provides no guidance on how to construct the evidence structure, what each parameter represents, or any constraints or examples. This is completely inadequate for an agent to call it 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%, meaning the description must explain the parameters, but it does not. It only mentions 'analysis result' generically without clarifying what project_id, analysis_type, summary, analysis, or source_report_ids mean, or how they map to the evidence structure. This is a critical gap for a tool with five required parameters, including a nested object.

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 states a specific verb ('wrap') and resource ('analysis result' into an 'evidence structure'), and names the downstream consumer (orange_island_core evidence_add). This clearly differentiates it from sibling analysis/report tools, which are about generating or retrieving data rather than packaging it for another system.

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 description implies a post-processing role (wrapping an analysis result for a specific target), but does not explicitly state when to use this tool versus alternatives, nor any exclusions. The mention of evidence_add gives context, but an agent is left to infer that this is the final step before handoff.

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