Skip to main content
Glama

Chase the Client on rejected files

request_replacement
Idempotent

Request a client resubmit rejected documents: flag rejected files, move the request to awaiting status, and restart automatic reminders to prompt action.

Instructions

Call this when a Document Request has rejected files and the Professional wants the Client to send them again. It flags every rejected file, moves the request back to awaiting the Client, and returns it to the automatic reminder cadence, which is what reaches the Client. Nothing is emailed by this call itself, and the optional message is kept in the audit trail rather than sent. Do not use it on a request with no rejected file; get_request shows which files were rejected.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageNoA note from the Professional, recorded in the audit trail of the request. Not sent to the Client.
request_idYesThe Document Request whose rejected files must be sent again.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.7/5.0
Behavior5/5

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

The description discloses key behavioral traits beyond the annotations: it flags every rejected file, moves the request back to awaiting the Client, returns it to the automatic reminder cadence, does not email anything itself, and keeps the optional message in the audit trail rather than sending it. This is rich, accurate context that matches the annotations.

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 and well-structured. It front-loads the trigger condition, describes the immediate effects, clarifies the email behavior, and closes with an explicit negative usage note. Every sentence earns its place without redundancy.

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?

Given the simple two-parameter schema.rand With no output schema, the description fully covers what an agent needs to invoke the tool correctly: when to use it, what side effects occur, what the message field does, and how to avoid misuse. No important gap remains.

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 baseline is 3. The description reinforces that the message is not sent to the Client)Skip, but it does not add meaningful parameter semantics beyond what the schema already documents for request_id and message.

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 action: call this when a Document Request has rejected files and the Professional wants the Client to resend them. It specifies the resource and the exact state change (flags rejected files, moves request back to awaiting the Client, returns to reminder cadence), distinguishing it from sibling read-only tools like get_request.

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?

Explicitly gives the precondition for use: a Document Request with rejected files and a Professional wanting the Client to send them again. It also states a clear exclusion: do not use on a request with no rejected file, and points to get_request as the way to check which files were rejected.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.