Skip to main content
Glama

ethora-mcp-server

Get Users Batch Job

ethora-users-batch-job-v2
Read-only

Fetch the current status and per-user results of a users batch job by jobId (one-shot, no polling). Returns the job object with its state (pending/running/completed/failed) and per-user outcomes. Auth: B2B mode (ethora-auth-use-b2b + a configured b2bToken) — must match the auth used to create the job. Errors: 401/403 not in B2B mode; 404 unknown jobId. Related: ethora-wait-users-batch-job-v2 for a blocking wait.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobIdYesJob id returned by `ethora-users-batch-create-v2`.
timeoutMsNoHTTP timeout for this status request, in milliseconds. Default 10000.

Schema Changelog

Changes observed during successful MCP inspections.

  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 read-only and non-destructive, and the description adds meaningful behavior: it returns a `state` with enumerated values, includes per-user outcomes, requires matching auth, and enumerates expected error codes. This goes well beyond the annotation metadata without contradicting it.

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?

The description is compact, front-loads the primary purpose, and every sentence adds actionable detail: return payload, auth context, error behavior, and related tool. No filler or redundant phrasing.

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?

Because there is no output schema, the description supplies the necessary return semantics: job state values and per-user outcomes. It also covers auth prerequisites, error responses, and the relationship to the blocking variant, making the tool fully understandable without additional lookups.

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 description coverage is 100%, so the schema already documents `jobId` and `timeoutMs` clearly. The description reinforces that `jobId` identifies the batch job but adds little semantic detail beyond the schema. This meets the baseline for high schema coverage.

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 ('Fetch') and resource ('current status and per-user results of a users batch job'), and clarifies the one-shot nature. It clearly distinguishes this from the related blocking wait tool by naming `ethora-wait-users-batch-job-v2`.

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

Usage Guidelines5/5

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

It explicitly states this is a one-shot status fetch with no polling, and points to `ethora-wait-users-batch-job-v2` as the alternative for blocking. It also gives concrete conditions about B2B auth requirements, which helps an agent decide when invocation is appropriate.

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.