Skip to main content
Glama

List jobs

speechmatics_list_jobs
Read-only

List transcription jobs (most recent first), with status/data_name/duration. Batch API: GET /jobs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax jobs to return.
created_beforeNoRFC3339 date-time; only return jobs created before this time (for pagination).
include_deletedNoInclude deleted jobs in the results.

Schema Changelog

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

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Beyond the readOnlyHint annotation, the description adds useful behavioral details: results are most recent first, include status/data_name/duration, and reference the Batch API endpoint. It doesn't cover pagination or rate limits, but the annotation lowers the burden.

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 short sentences deliver the essential information: what is listed, ordering, returned fields, and API endpoint. Every phrase adds value with no redundancy.

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?

For a simple list tool with complete parameter schemas and read-only annotations, the description provides sufficient context (ordering, fields, endpoint). It omits only optional details like default limit or pagination strategy, but these are covered by the schema's parameter descriptions.

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% and all three parameters have descriptive text, so the description does not need to explain them. It adds no additional parameter semantics beyond the schema's definitions.

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 uses a specific verb and resource ('List transcription jobs') with ordering and returned fields, clearly distinguishing it from sibling tools like get_job (singular) and delete_job. The scope is unambiguous.

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

Usage Guidelines3/5

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

The description states what it does ('List transcription jobs') but does not explicitly compare to alternatives such as get_job for a single job or mention when not to use it. The usage is implied rather than prescribed.

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.4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: job management (get, delete, list), transcript retrieval, usage stats, and submission. No overlapping purposes; the only pair that could seem similar (get_job vs get_transcript) is clearly differentiated by descriptions of status vs content.

Naming Consistency5/5

All tool names follow the exact pattern `speechmatics_<verb>_<object>`, using consistent snake_case. This is highly predictable and makes the API surface easy to navigate.

Tool Count5/5

With 7 tools, the set is well-scoped for a transcription service. Each tool covers a necessary operation without redundancy, and the count feels neither too thin nor overwhelming.

Completeness5/5

The toolset covers the full lifecycle of transcription jobs: create (transcribe_url), read (list_jobs, get_job), retrieve output (get_transcript), delete (delete_job), plus operational needs (get_job_log, get_usage). No significant gaps for the stated purpose.