Skip to main content
Glama

STEADYWRK Field Service Dispatch

dispatch.order

Create a dispatch work order. Attempts to auto-match a contractor from the active pool. Returns HTTP 201 with a masked contractor reference when a contractor is matched, or HTTP 202 with status accepted_pending_fulfilment and fulfilment.assigned=false when none is available yet — in both cases the order is recorded and readable at the returned tracking.status_url. BILLABLE: this is the paid tool. It requires a provisioned STEADYWRK integration key presented as x-api-key (or Authorization: Bearer). A self-serve OAuth client_credentials token from /api/mcp/oauth/register authenticates and is accepted by dispatch.quote, but it is NOT entitled to create orders: it receives HTTP 402 payment_required (JSON-RPC -32002). Anonymous callers receive HTTP 401 with WWW-Authenticate. Email hello@steadywrk.app to be provisioned for ordering; price jobs meanwhile with dispatch.estimate (keyless) or dispatch.quote (self-serve credential).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tradeYes
urgencyNoroutine
locationYes
nte_centsNo
descriptionYes
callback_urlNo
reference_idNo

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations, the description carries the full burden. It discloses auth mechanisms (x-api-key or Bearer), the specific HTTP responses (201/202/402/401), the meaning of the accepted_pending_fulfilment status, and that orders are always recorded and accessible via tracking URL. This is thorough and leaves little to inference.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but dense with actionable information. It front-loads the core purpose in the first sentence and then efficiently covers status codes, auth, and alternatives without redundancy. Every sentence earns its place, though it could be slightly tightened by moving the provisioning email to a footer.

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 auth requirements, response semantics, and routing to alternatives, which is essential for correct usage. However, it omits parameter-level guidance (what values to pass for trade, location, etc.) and any note about required vs optional fields beyond the schema. Since the schema lacks descriptions, this is a notable omission.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. However, it does not explain any of the 7 parameters (trade, urgency, location, nte_cents, description, callback_url, reference_id) beyond mentioning 'trade' and 'location' indirectly in context. The description does not add meaning to the schema, and the schema itself has no property descriptions. This is a significant gap for a tool with nested objects and enums.

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 the tool creates a dispatch work order, explicitly says it auto-matches a contractor, and describes the HTTP status codes. It distinguishes itself from siblings by naming dispatch.estimate and dispatch.quote as alternatives for pricing, making it unambiguous which tool to use for order creation.

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?

The description provides explicit when-to-use guidance: it is the paid tool requiring a provisioned integration key, and it explicitly directs users to use dispatch.estimate (keyless) or dispatch.quote (self-serve credential) for pricing jobs. It also explains that self-serve OAuth is not entitled for order creation (402), giving clear exclusions and alternatives.

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

Each tool serves a clearly distinct purpose: readiness probe, cost estimation, evals metrics, trade catalog, order creation, and instant quotes. The overlap between dispatch.estimate and dispatch.quote is explicitly disambiguated by authentication and purpose (keyless rate-card vs. authenticated quoted price), so there is no boundary confusion.

Naming Consistency5/5

All tools follow a consistent dotted-prefix pattern: agentic.readiness_probe and dispatch.*, with dispatch tools all using a noun-style verb (estimate, evals, index, order, quote). No mixed conventions or irregular verbs; the naming fully supports discoverability.

Tool Count5/5

Six tools is a well-scoped set for a field-service dispatch server. Each tool covers a distinct operational function without redundancy, and the count is neither too thin nor bloated for the declared scope.

Completeness4/5

The server covers pricing (estimate/quote), order creation, trade catalog, readiness probe, and performance metrics. A minor gap: there is no direct tool to fetch order status or manage/cancel orders, though a tracking URL is returned, which slightly limits lifecycle coverage.

Resources