Skip to main content
Glama

ジョブ一覧

list_jobs
Read-only

自分の解析ジョブ一覧を最新順に取得します(最大30件)。 ■ status(pending / processing / completed / failed)と endpoint_id(ship / oilslick / newbuilding / disappearbuilding / timeseries / idlefarm)で絞り込み可能。カンマ区切りで複数指定できます。 ■ 「さっきのジョブどうなった?」のように job_id が会話に残っていない場合の確認に使用してください。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo取得件数(1〜30、省略時 30)
statusNoステータス絞り込み(カンマ区切り可。例: processing,completed)。省略時は全件
endpoint_idNo検出種別絞り込み(カンマ区切り可。例: idlefarm)。省略時は全件

TDQS

A4.4/5.0
Behavior4/5

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

The readOnlyHint annotation is already set, and the description adds context: it returns at most 30 items and supports comma-separated multiple filters. This source is useful because it clarifies the pagination/limit behavior and the flexibility of filtering, which is not fully evident from the annotation alone. No contradiction detected.

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: the core action and limit appear first, then filtering semantics, then a practical use case. Every sentence adds meaningful guidance without filler, making it easy for an agent to quickly understand when and how to call the tool.

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?

The description is complete enough for a straightforward list tool with no output schema. It covers the main behaviors (latest order, max, filtering) and the intended use case. It does not explain the return structure, but that is not critical given the simple list nature and the derived usage context.

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?

Although the schema already covers 100% of parameters, the description explicitly lists the allowed status values (pending / processing / completed / failed) and endpoint_id values (.ship / oilslick / newbuild / .disappear) which are not defined as enums. This adds practical semantics that an agent can use without opening 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 clearly states the action (fetch a list) and the resource (analysis jobs), and adds key constraints: latest order, max 30 items, and filterable by status and endpoint_id. It distinguishes itself from siblings like check_job_status (single-job status) and get_job_result (specific result) by emphasizing the batch listing and the use-case of recovering jobs not tied to a job_id.

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 gives a concrete usage scenario: "さっきのジョブどうなった?" (what happened to my last job) when the job_id is no longer in the conversation, which is clear guidance for when to use this tool. However, it does not explicitly state when not to use it or mention alternatives beyond the implicit contrast with sibling tools.

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