Skip to main content
Glama

list_runs

Read-onlyIdempotent

List the account's task runs, newest first — delegated jobs and scheduled tasks alike. Filter by status or task.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoDefault 20.
statusNoOnly runs in this state.
task_idNoOnly runs of this task (task_...).
ending_beforeNoReturn the page before this id — the first id from the previous page.
starting_afterNoReturn the page after this id — the last id from the previous page.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYes
objectYes
has_moreYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already establish safety (readOnly, idempotent, non-destructive), and the description adds useful behavioral context: newest-first ordering and coverage of both delegated and scheduled tasks. It doesn't contradict annotations, and it doesn't overpromise writes or side effects.

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?

Two tight sentences: the first front-loads the action, scope, and ordering, the second the filtering capability. No filler or repetition of schema details.

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?

With a full output schema, complete parameter descriptions, and annotations covering safety, nothing essential is missing. The description adds the account scope, ordering, and filter intent, making it sufficient for an agent to select and invoke correctly.

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 coverage is 100% with helpful per-parameter descriptions, so the baseline applies. The description's 'Filter by status or task' restates what status and task_id already say in the schema without adding syntax, defaults, or pagination behavior.

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?

Description opens with a specific verb and resource ('List the account's task runs') and adds valuable ordering ('newest first'). It clearly delimits scope ('delegated jobs and scheduled tasks alike') and names the available filters ('by status or task'). This separates it from siblings like get_run, which targets a single run.

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 for when to call this tool—when you want an account-level view of task runs, with optional filtering. It does not explicitly name alternative tools or exclusions, but the sibling list makes the boundary obvious (get_run for one run, cancel_run for cancellation, wait_for_run for blocking).

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/5.0
Disambiguation4/5

The direct API tools (api_search/api_execute) are clearly distinct from the agent workflow tools. The main ambiguity is between ask_crevio and start_chat, since both initiate agent runs, though one waits and the other does not.

Naming Consistency4/5

Most tools follow a clear verb_noun pattern (list_runs, get_run, send_message, cancel_run). The api_ prefix on api_execute/api_search and the lowercase whoami are minor deviations from an otherwise consistent convention.

Tool Count5/5

14 tools is well-sized for a server that combines direct REST API access with an agent run/chat lifecycle. Each tool has a distinct role and none feel redundant or unnecessary.

Completeness5/5

The REST surface is fully covered through api_search and api_execute, and the agent lifecycle is complete: start, continue, ask, wait, list, approve, cancel, and inspect runs/chats/messages. No critical operation appears to be missing.

Resources