Skip to main content
Glama

解析範囲と消費クレジットの事前確認

preview_analysis
Read-only

解析を投入する前に、どの範囲が解析されるかと消費クレジットを確認します。ジョブは作成されず、クレジットも消費しません。 ■ 指定した範囲と実際に解析される範囲は一致しません(シーンが範囲全体を覆っていない場合があります)。 ■ analyze_* を実行する前に必ずこれを呼び、結果をユーザーに提示して承認を得てください。 ■ 引数は analyze_* と同じものをそのまま渡せます。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNo基準日(ship / oilslick、YYYY-MM-DD)
polygonNoWKT形式ポリゴン
date_endNo解析終了日(YYYY-MM-DD)
scene_idNoシーンID(ship / oilslick)
date_startNo解析開始日(YYYY-MM-DD)
endpoint_idYes解析の種別
satellite_idYes衛星ID。現在 sentinel-1 のみ対応
date_directionNo基準日に対する選択方向
orbit_directionNo軌道方向(ascending / descending)

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the readOnlyHint annotation, it discloses that the call is side-effect free (no job, no credits), that the analyzed range may not match the requested range because scenes may not cover it, and that user approval is required. This is exactly the kind of non-obvious behavior an agent needs.

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 compact and front-loaded: purpose, side-effect guarantee, caveat, and required workflow are each covered in a short sentence or bullet. No redundant text.

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

Completeness5/5

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

For a read-only preflight tool, it covers what is needed to invoke it correctly and what to do with the result, including the approval step and the range-mismatch caveat. Since the return is conceptually just the analyzed range and credit estimate, no output schema is needed for correct use.

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

Parameters3/5

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

Schema description coverage is 100%, so the baseline is 3. The description adds a useful cross-tool note that parameters are identical to analyze_*, but it does not explain individual parameter semantics beyond the schema.

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 uses a specific verb (確認) and resource (解析範囲と消費クレジット), and explicitly contrasts itself with analyze_* by stating no job is created and no credits are consumed. This makes it easy for an agent to distinguish it from the analyze_* siblings.

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

Usage Guidelines5/5

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

It provides a direct mandatory usage rule: 'analyze_* を実行する前に必ずこれを呼び、結果をユーザーに提示して承認を得てください'. It also tells the agent that the same arguments as analyze_* can be passed as-is, removing ambiguity about parameter selection.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each analysis tool targets a distinct detection type (buildings disappearing, new buildings, oil slick, ships, surface changes), and job management tools have clear separate roles (status, result, list). The polygon drawing and preview tools are also uniquely scoped.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern: analyze_* for detections, check_job_status / get_job_result / list_jobs for job operations, and open_polygon_draw / preview_analysis for supporting actions. No mixed conventions or vague verbs.

Tool Count5/5

Ten tools cover the full workflow without redundancy: five analysis types, three job management utilities, one drawing helper, and one preview gate. This is well-scoped for a satellite analysis server.

Completeness5/5

The workflow is complete: preview to approve, submit analysis, poll status, retrieve results, list past jobs, and draw polygons. The domain covers the major SAR-based detection needs and includes explicit guidance for handling long-running jobs.

Resources