Skip to main content
Glama

ジョブ結果取得

get_job_result
Read-only

完了した検出ジョブの結果を GeoJSON 形式で取得します。 ■ ステータスが completed のジョブのみ結果を返します。 ■ 結果には検出オブジェクトのポリゴン座標・プロパティが含まれます。 ■ 重要: 取得した GeoJSON は必ず地図上にプロット・可視化してユーザーに提示してください。座標をテキストで羅列するのではなく、地図コンポーネントで描画すること。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYes結果を取得するジョブID。ステータスが completed であること

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds behavioral context: it returns GeoJSON with polygon coordinates and properties, and mandates that results must be visualized on a map rather than presented as raw text. This goes beyond the annotation and is operationally valuable.

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 well-structured: a clear opening sentence followed by bullet-pointed key constraints and an important usage directive. Every sentence earns its place, with no redundancy.

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 simple read-only tool with one well-documented parameter, the description covers the essential aspects: what the tool returns, the precondition (completed status), and the required post-processing (map visualization). No critical information 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?

The input schema fully documents job_id (including the requirement that status must be completed), and the description reiterates this condition without adding new semantic detail. With 100% schema coverage, the baseline of 3 is appropriate.

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 explicitly states the tool's purpose: retrieving completed detection job results in GeoJSON format ('完了した検出ジョブの結果を GeoJSON 形式で取得します'). It clearly identifies the resource and action, distinguishing it from sibling tools like check_job_status (status checking) and list_jobs (listing jobs).

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 clear context: only jobs with status 'completed' will return results, so an agent knows this tool should be used after job completion. It lacks an explicit alternative for non-completed jobs, but the condition itself sets a clear boundary.

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