Skip to main content
Glama

新規建物検出

analyze_newbuilding

指定エリア・期間内に新しく建設された建物を検出します。Sentinel-1 SARの前後比較による変化検出。 ■ 入力: WKT形式ポリゴン + 日付範囲(YYYY-MM-DD)。satellite_id は sentinel-1 を指定。 ■ 面積制限: 最大30000km²。超える場合はエリアを分割してください。 ■ 処理: 期間内の2シーンを比較しGPU推論。所要時間は面積に依存。 ■ 出力: 新規建物のポリゴンを含むGeoJSON。 ■ フロー: ジョブ投入後 job_id が返される。check_job_status でポーリングし、completed 後に get_job_result で結果取得。 ■ 実行前に preview_analysis で解析範囲と消費クレジットを確認し、ユーザーの承認を得てください。ジョブは投入後にキャンセルできません。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
polygonYesWKT形式ポリゴン(例: POLYGON((139.7 35.6, 139.8 35.6, 139.8 35.7, 139.7 35.7, 139.7 35.6)))。最大30000km²
date_endYes解析終了日(YYYY-MM-DD)
date_startYes解析開始日(YYYY-MM-DD)
satellite_idYes衛星ID。現在 sentinel-1 のみ対応
orbit_directionNo軌道方向(ascending / descending)。省略時は自動判定

TDQS

A4.3/5.0
Behavior4/5

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

Annotations (readOnlyHint=false, destructiveHint=false) indicate a non-read-only operation that does not destroy data. The description adds valuable behavioral context: it states GPU inference, time dependent on area, returns GeoJSON, and the job-polling lifecycle including non-cancellation after submission. It does not contradict the annotations and goes well beyond the basic flags.

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 well-organized with clear labeled sections (input, area limit, processing, output, flow, and pre-action). Each section carries unique useful information without redundancy. It is slightly long but information-dense; there is minimal fluff. It could be marginally tighter but is already efficient.

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?

Given the tool involves GPU inference, job creation, and polling, the description satisfactorily covers all steps: how to specify inputs, what the result is, how to retrieve it (via check_job_status and get_job_result), and the requirement to use preview_analysis beforehand. It lacks only minor details such as error handling or timeouts, but these are not essential for initial selection.

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

Parameters4/5

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

Schema coverage is 100%, but the description complements it by specifying that 'satellite_id' must be 'sentinel-1', and reinforces area limit (max 30000 km²) with instruction to split otherwise. It also provides a WKT format example and indicates 'orbit_direction' is optional. This adds practical constraints not fully captured in the schema's property stubs.

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 clearly states the tool detects newly constructed buildings within a specified area and date range using Sentinel-1 SAR change detection. It specifies the verb ('detect'), resource ('buildings'), and scope, and the sibling tools (e.g., 'analyze_disappearbuilding') clearly differ in intent, so an agent can easily distinguish them.

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

Usage Guidelines4/5

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

The description provides explicit workflow guidance: it instructs to run 'preview_analysis' beforehand for scope and credit confirmation, obtains user approval, and notes that jobs cannot be canceled after submission. It also mentions area limits and suggests splitting large areas. While it doesn't explicitly contrast with sibling analysis tools, the purpose is self-evident, and file format and process flow are clearly documented.

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