Skip to main content
Glama
kalala252

asm-mcp-server

by kalala252

get_evidence

Read-only

Retrieves evidence for a specified report, optionally filtering to items where the asset exactly matches the subject or object.

Instructions

根拠を返す。asset指定時はsubjectまたはobjectが完全一致する根拠だけに絞る。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
assetNo
limitNo
offsetNo
report_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalYes
offsetYes
evidenceYes
has_moreYes
returnedYes
report_idYes
asset_filterYes

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, so the safety profile is covered. The description adds useful exact-match filtering semantics for the asset parameter, but it does not explain pagination behavior, result ordering, or how evidence relates to the required report_id.

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?

The description is two short sentences with no filler. The core verb and scope come first, and the key filtering condition follows in a compact, readable way.

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

Completeness3/5

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

Given the output schema and readOnly annotation, the description is close to sufficient for a simple read operation, and it includes the important asset-filter behavior. However, it leaves the role of report_id implicit and does not mention pagination defaults, which an agent would need for confident invocation.

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

Parameters2/5

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

Schema description coverage is 0%, so the description carries the burden for parameter meaning. It adds meaningful semantics only for asset (exact match on subject/object), while report_id, limit, and offset receive no explanation beyond their schema titles.

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 states that the tool returns evidence and, when an asset is provided, filters to evidence where the subject or object exactly matches. This clearly identifies the core function, though it does not explicitly differentiate it from siblings like get_report_summary.

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

Usage Guidelines2/5

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

There is no guidance about when to use this tool versus alternatives such as list_reports or get_report_summary. The asset-filter note is parameter behavior rather than tool-selection guidance.

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