Skip to main content
Glama

OneStepTranscribe MCP server

start_transcription

Step 2 of transcribing a file. Re-checks that the account has credits and starts the job. The backend verifies the audio was actually uploaded to S3 (via the curl command from prepare_upload) and rejects the request if it is missing. This consumes one credit. The four result files (PDF, Markdown, DOCX, CSV) are emailed to the address when processing finishes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesThe same email used in prepare_upload (re-checked for credits).
order_idYesThe order_id returned by prepare_upload.

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries full burden. It discloses credit re-check, S3 validation, credit consumption, and email delivery of four result files. It does not cover error states but provides substantial behavioral detail.

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?

Three sentences, front-loaded with purpose ('Step 2'). No redundant information; each sentence contributes essential detail.

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 covers the workflow, parameters, and outcome (email sent). Without an output schema, it could mention the immediate return value, but given low complexity (2 params), it is fairly complete.

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

Parameters5/5

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

Schema coverage is 100% with descriptions, but the tool description adds context: email must match prepare_upload, and order_id is the one returned by prepare_upload. This adds meaning beyond the schema alone.

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 this is 'Step 2 of transcribing a file' with a specific verb ('starts') and resource ('job'), distinguishing it from siblings like prepare_upload (step 1) and buy_credits/check_credits (credit management).

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 implies usage after prepare_upload by referencing the S3 upload verification and order_id from that step. It gives context for credit consumption but does not explicitly state when not to use or provide exclusions.

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

Each tool serves a clear, non-overlapping purpose: credit purchase, credit check, upload preparation, and transcription start. No ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (buy_credits, check_credits, prepare_upload, start_transcription) using underscores.

Tool Count5/5

Four tools perfectly cover the core workflow (credit management + upload/transcript) without unnecessary extras.

Completeness4/5

The workflow is covered end-to-end, but there is no tool to poll transcription status or retrieve results (they are emailed). This minor gap could be addressed with a status tool.

Resources