Skip to main content
Glama

atlas_list_runs

List Atlas workflow runs with stable pagination. Retrieve run IDs, graphs, statuses, and progress from a local audit-ready multi-model engine.

Instructions

列出运行(零成本,P4)。按 run_id 降序稳定分页。

每条含 run_id/graph/status/nodes_done/started;状态为 running/interrupted/paused/done/failed/cancelled(interrupted 由 账本+运行锁动态判定)。starting 只在账本落账前的短暂窗口由 Web 单 run 查询 合成,不出现在本列表。cursor 传上一页返回的 next_cursor 续页。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
cursorNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.3/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and adds substantial behavioral context: zero cost, P4, stable pagination, the full status enumeration, dynamic determination of 'interrupted' via ledger and run lock, and the short-lived 'starting' window excluded from this list. It does not cover authentication or rate limits, but the disclosure is rich for a read-only list operation.

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 front-loaded with purpose and ordering, then adds status details and pagination rules. Every sentence serves a purpose for a tool with zero annotations, but some status enumeration could be relegated to the output schema since one exists.

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?

An output schema exists, so return fields needn't be explained, yet the description still lists key fields. It covers pagination, sorting, statuses, and the subtle 'starting' exclusion. Gaps remain around the 'limit' parameter and authentication context, but overall it is fairly complete for a list tool.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It explains 'cursor' (pass the previous page's next_cursor), but completely omits the 'limit' parameter—its default (20 in schema) and any bounds or semantics. Half the parameters remain undocumented.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

State a clear verb+resource: '列出运行' (list runs), with sorting by run_id descending and stable pagination. It enumerates returned fields (run_id/graph/status/nodes_done/started), making the purpose unambiguous. However, it does not explicitly distinguish from sibling tools like atlas_get_run.

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

Usage Guidelines2/5

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

The description gives pagination mechanics ('cursor 传上一页返回的 next_cursor 续页') but no guidance on when to use this tool versus alternatives (e.g., atlas_get_run for a single run, or atlas_list_workflows for workflows). No when-not conditions are stated. Usage is only implied by the tool name.

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