Skip to main content
Glama

List jobs for the tenant, newest first.

list_jobs
Read-only

List jobs for the tenant, newest first. Secret key only. Paged: pass limit (1–100, default 25), optional status, and cursor from the previous page's next_cursor (null on the last page; a bad cursor is a 400). Scope: jobs:read.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
cursorNoOpaque; from the previous response's next_cursor.
statusNoFunnel order. **created** — The job exists. Nothing uploaded yet. **uploading** — An upload URL was issued; the video is on its way. **uploaded** — A chunked upload was assembled (a single PUT skips this state). **queued** — POST /submit accepted; waiting for the analysis worker. **processing** — The walkthrough is being analysed. Poll GET /jobs/{id}; typically 1–4 minutes. **complete** — Inventory ready. The firm quote is computed on the first read. **quoted** — A firm, bookable quote exists (set by the first GET after complete). **booked_requested** — The customer asked to book; the mover has not answered yet. **booked** — The mover confirmed the booking. **declined** — The mover turned the request down. `decline_reason` may say why. **error** — Analysis failed. `error` carries a message; upload again or contact the mover.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already mark this as read-only and non-destructive, and the description adds valuable behavior beyond that: secret-key-only authentication, jobs:read scope, newest-first ordering, pagination mechanics, and the 400 response for a bad cursor. This gives the agent a strong behavioral model of the call.

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 sentences, front-loaded with the core purpose, then dense with only actionable constraints. Every clause adds value: auth, scope, ordering, pagination, cursor handling, and error behavior. No filler.

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 read-only list tool with three optional parameters and no output schema, the description is complete enough to invoke correctly. It covers auth, scope, ordering, paging, cursor source, and error semantics. The absense of an output schema is mitigated by the cursor/paging details.

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?

The abstract schema documents limit constraints and status enums in detail, while the description adds practical meaning: limit is the page size, status is optional, and cursor comes from the previous response's next_cursor. It does not restate the enum values, but the abstract schema covers those well.

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 states a specific action ('List jobs'), a clear resource (jobs for the tenant), and an ordering guarantee ('newest first'). This separates it from singular get_job and other list_* sibling tools by resource and plural scope.

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 clear context: secret key authentication, required scope jobs:read, and paging behavior. It does not explicitly name alternatives or state when not to use this tool, 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.

Resources