Skip to main content
Glama

消失建物検出

analyze_disappearbuilding

指定エリア・期間内に消失した建物を検出します。Sentinel-1 SARの前後比較による変化検出。災害前後の家屋被害推定等に利用。 ■ 入力: WKT形式ポリゴン + 日付範囲(YYYY-MM-DD)。satellite_id は sentinel-1 を指定。 ■ 面積制限: 最大30000km²。超える場合はエリアを分割してください。 ■ 処理: 期間内の2シーン(before/after)を比較し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.5/5.0
Behavior5/5

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

Beyond annotations, it discloses the asynchronous job model (job_id returned, polling required), non-cancellable jobs, GPU inference, area-dependent runtime, and GeoJSON output. These are non-obvious behavioral details that materially affect how an agent should use the tool.

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?

Well-organized with labeled bullet sections for input, area limits, processing, output, and lifecycle. Every section carries operational value and the structure makes the flow easy to follow despite the length.

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 an asynchronous job tool with no output schema, the description covers input requirements, area constraints, processing behavior, output type, job lifecycle, and prerequisite preview/approval step. Nothing critical for correct invocation is missing.

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%, and the schema already documents each parameter including WKT format, date range, and sentinel-1 constraint. The description reinforces these constraints but does not add meaningfully new parameter semantics beyond the schema, so the baseline 3 applies.

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?

States a specific verb (検出) and resource (消失建物), and the method (Sentinel-1 SAR前後比較) makes the tool distinct. It is clearly differentiated from siblings like analyze_newbuilding and analyze_oilslick by domain and processing approach.

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?

Provides strong operational guidance: use preview_analysis before execution, poll check_job_status, get results via get_job_result, and split areas over 30000 km². It does not explicitly name sibling alternatives for when-not-to-use, so it stops short of a 5.

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