Have It Printed
Server Details
Print and mail physical documents in the US via USPS, with quotes, agent payment and tracking.
- Status
- Healthy
- Uptime
- 100.0% over 23 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 10 tools
Most tools are clearly separated by lifecycle stage (create, update, quote, prepare, pay, checkout, order). hip_quote and hip_prepare_payment both deal with pricing, but their descriptions distinguish quote (human checkout) from prepare (autonomous payment), so only minor ambiguity exists.
All tools use the hip_ prefix and snake_case, with a consistent verb_noun pattern (create_job, update_job, get_order, prepare_payment). Minor deviation: hip_complete_payment and hip_create_checkout are both payment-related but use different verbs, though still readable and predictable.
10 tools is well-scoped for a print-and-mail service covering job creation, pricing, payment, checkout, and order tracking. Each tool maps to a distinct operation in the workflow, and none feel redundant.
The surface covers the full job lifecycle: create, update, quote, prepare payment, pay, checkout, and track. Minor gaps include no explicit cancel/delete job tool and no webhook/status callback tool, but agents can work around these with get_order and get_checkout_status.
Available Tools
10 toolship_complete_paymentAInspect
Pay for the job with a delegated payment authorization, with no browser and no human step. payment_authorization must be a Stripe shared payment token (spt_...) granted to Have It Printed whose maximum is at least the total from hip_prepare_payment; HIP charges exactly that total and never more. NEVER send a card number, expiry, CVV or any reusable credential to this tool. If the cardholder's bank requires authentication, this returns payment_status=requires_user_action rather than bypassing it.
| Name | Required | Description | Default |
|---|---|---|---|
| job_handle | Yes | ||
| payment_authorization | Yes | opaque delegated payment token (spt_...) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden. It discloses exact-charge behavior, no-human/no-browser execution, the requires_user_action fallback instead of bypassing authentication, and the prohibition on reusable credentials.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Every sentence earns its place: purpose, precondition, and security/edge-case behavior are packed into four sentences with no filler. The most decision-relevant information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a two-parameter payment completion tool with no output schema, the description covers everything an agent needs before calling: token requirements, charge amount, bank-auth failure mode, and what not to pass. No critical precondition appears omitted.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is only 50% because job_handle has no description. The description compensates substantially for payment_authorization by defining token type, issuer, required maximum, and charging behavior. job_handle is only implied via 'the job' and reference to hip_prepare_payment, leaving a small inferential gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Begins with specific verb 'Pay' and resource 'the job', and immediately specifies mechanism: delegated payment authorization, no browser, no human step. It also references hip_prepare_payment, distinguishing it from sibling payment workflow tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
States explicit preconditions: payment_authorization must be an spt_ token granted to Have It Printed with a maximum covering the hip_prepare_payment total, and HIP charges exactly that total. Also provides strong when-not guidance: never send card data and do not bypass bank authentication.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hip_create_checkoutAInspect
Create a Stripe Checkout session for the job and return its URL. This does NOT take payment: the customer completes payment at that URL. Show them the quote first.
| Name | Required | Description | Default |
|---|---|---|---|
| job_handle | Yes | ||
| customer_email | No | for the receipt and tracking email |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and does it well: it discloses the main side effect (creating a checkout session), explicitly clarifies that payment is not captured by this tool, and points to where payment actually occurs. It could add details about state changes or duplicate-session behavior, but the critical safety-relevant boundary is clearly stated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short sentences, front-loaded with the core purpose and outcome, followed by the key negation and a workflow cue. Every sentence earns its place with no repetition or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a two-parameter tool with no output schema, the description provides the essential context: what it creates, what it returns, what it does not do, and the recommended preceding step. It is slightly short on edge-case or state-change details, but it is complete enough for an agent to invoke the tool correctly in the basic flow.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 50%: customer_email is already documented in the schema, and the description only loosely refers to the job via 'for the job'. It does not elaborate on job_handle format or semantics, nor does it mention customer_email. The description adds minimal value beyond the schema for parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('Create a Stripe Checkout session'), a specific resource ('for the job'), and a concrete return value ('return its URL'). It also clearly distinguishes this tool from payment-taking siblings by explicitly saying it does NOT take payment.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear workflow context: show the quote first, create checkout, and let the customer pay at the returned URL. It does not name alternative tools explicitly, but the 'does NOT take payment' clarification and 'Show them the quote first' instruction make the intended sequencing clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hip_create_jobAInspect
Start a print-and-mail job. Returns an opaque job_handle used by every later call. Creates nothing chargeable.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral burden. It usefully discloses that the call creates nothing chargeable and returns an opaque handle, which are key behavioral traits. It does not mention idempotency or error behavior, but for a zero-parameter create operation it gives solid transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. It front-loads the core action and immediately follows with the most important return-value and side-effect information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple no-parameter tool with no output schema, the description explains what it does, what it returns, and that it has no immediate charge impact. It could add workflow sequencing relative to siblings, but the job_handle statement largely covers the caller's needs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema is empty and schema description coverage is 100%, so parameter documentation needs no compensation. The description adds no parameter details, but none exist; the baseline for zero parameters applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource: 'Start a print-and-mail job.' It further distinguishes the tool by stating it returns an opaque job_handle used by every later call, which clearly separates it from checkout, payment, and quote siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is the initial step in a multi-call workflow by stating the returned job_handle is 'used by every later call.' It does not explicitly name alternatives or exclusion conditions, but the context is clear enough for an agent to know when to invoke it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hip_get_checkout_statusBInspect
Whether the customer has paid yet. Payment truth comes from the order record Stripe's webhook creates, never from a browser redirect.
| Name | Required | Description | Default |
|---|---|---|---|
| job_handle | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full disclosure burden. It contributes one substantive behavioral insight — the tool sources truth from the Stripe webhook-created order record and deliberately ignores browser redirect state — which is genuinely useful. However, it does not disclose whether the call is read-only, what happens when no order record exists yet, whether there is eventual-consistency lag after the webhook fires, or what the return value looks like.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two tight sentences with no filler: the core purpose is front-loaded ('Whether the customer has paid yet') and the authoritative-source caveat follows immediately. Every clause earns its place, making this an excellent example of economical, well-ordered prose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 1-parameter tool this is close to adequate, but significant gaps remain: the return shape is undisclosed (boolean? status string? null?), edge behavior when the webhook order record is absent is not covered, and job_handle is underdescribed. Additionally, no disambiguation from hip_get_order, which may expose related payment data, is provided — though the tool's low complexity keeps the damage contained.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the description never mentions job_handle — no format, provenance, or example is given. The sole parameter's name is fairly self-explanatory within the tool family as a job identifier, which softens the gap, but the description adds zero parameter-level meaning and does not compensate for the empty schema as required by the low-coverage baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description answers a concrete question — 'Whether the customer has paid yet' — identifying the resource as checkout/payment status and giving it a specific semantic tied to Stripe's webhook order record. It avoids tautology and conveys real meaning, but it lacks an explicit verb like 'gets' or 'returns' and never names a sibling, so differentiation is implicit rather than explicit.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a useful context signal: payment truth comes from the order record Stripe's webhook creates, never from a browser redirect. This tells an agent where authoritative payment state lives and implicitly warns against trusting redirect-based signals, but no sibling tool is named and no explicit when-to-use vs. when-not-to-use condition is stated — usage must be inferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hip_get_orderAInspect
Status and USPS tracking for the paid order belonging to this job.
| Name | Required | Description | Default |
|---|---|---|---|
| job_handle | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the behavioral disclosure burden. It does state what the tool returns (status and USPS tracking), which is useful, but it does not describe side effects, error behavior, prerequisites, or response details. Acceptable for a getter, but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One short sentence with no filler. The output focus is front-loaded, and every word contributes meaning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has only one required parameter, no output schema, and no annotations, the description covers the essential context: what is returned and to which job it applies. It could mention what happens when no paid order exists, but this is a minor gap for such a simple tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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. It partially does by linking the sole parameter to 'this job', making it clear that job_handle identifies the job whose paid order is being queried. It does not define the handle format or how to obtain it, but the single self-explanatory parameter keeps this adequate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the resource: status and USPS tracking for the paid order belonging to a job. It is distinct from sibling tools like hip_get_checkout_status because it refers to the paid order, not the checkout process. It lacks an explicit verb but the intent is unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'for the paid order belonging to this job' gives clear context: use this when you need order-level status or USPS tracking after payment, tied to the job identified by job_handle. It does not explicitly contrast with alternatives, but the scope is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hip_get_service_infoAInspect
What Have It Printed does, what it costs, what file types and sizes are accepted, and how mailing works. Needs a Bearer API key, like every tools/call (POST /v1/onboard to get one).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses the required Bearer API key and how to obtain one, which is essential. It doesn't state whether the tool is read-only, but the 'get' prefix and informational purpose make that inferable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences cover the tool's scope and authentication requirement. The most relevant service-detail list is front-loaded, with no unnecessary filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description fully covers what the tool returns (service details) and the prerequisite auth. For a no-parameter, no-output-schema tool, this is complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With zero parameters, the baseline is 4. The description needs no parameter-specific guidance, and it correctly omits any.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: retrieving service information (pricing, file types, mailing). The verb 'get' and resource 'service info' are specific, and it is distinct from sibling tools which perform actions like creating jobs or payments.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The nature of the tool as an info fetcher is evident, and siblings are all action-oriented, so usage is implied. However, there is no explicit 'use this when' statement or comparison to alternatives, leaving it to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hip_get_upload_targetBInspect
Get a short-lived upload URL for the customer's document. PUT the bytes to it. File type and size limits are the same as the website.
| Name | Required | Description | Default |
|---|---|---|---|
| filename | Yes | ||
| job_handle | Yes | ||
| content_type | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It discloses that the URL is short-lived, requires PUT, and is subject to website file limits—useful. However, it does not mention authentication requirements, error behavior, or what happens when limits are violated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. The main action is front-loaded, and the PUT instruction earns its place as a necessary behavioral detail. It is concise without sacrificing clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The core action is clear, but an agent cannot confidently call this tool without understanding job_handle and content_type semantics. There is no output schema or annotation to fill the gap, so the description is not complete enough for correct invocation. The file-limit note is helpful but insufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not explain any of the three parameters. 'job_handle' is never mentioned, and 'filename' and 'content_type' receive no semantic guidance. The description completely fails to compensate for the missing schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get a short-lived upload URL') and the resource ('customer's document'), and adds the concrete instruction to PUT bytes to it. This distinguishes it from sibling tools, which are payment/checkout/job operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use it (before uploading a customer document) and gives a constraint (file type/size limits same as website), but it does not explicitly state when not to use it or mention alternatives. Since none of the siblings overlap functionally, this is a moderate gap rather than a serious one.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hip_prepare_paymentAInspect
Resolve the EXACT amount HIP will charge, before any payment authorization is obtained or spent. This does NOT charge anything. Returns subtotal_cents, tax_cents, total_cents, currency, a pricing fingerprint and the authorization types HIP accepts. Tax is calculated by Stripe from the destination, so hip_quote alone is not the payable amount. The returned total is bound to this job's documents, options and recipient: change any of them and payment is refused with QUOTE_STALE until you prepare again. Use this when paying autonomously with a delegated payment authorization; a human paying in a browser does not need it. Commits the job to the autonomous payment rail.
| Name | Required | Description | Default |
|---|---|---|---|
| job_handle | Yes | ||
| buyer_email | No | optional: the buyer's email address. Have It Printed sends its order confirmation there once the payment succeeds. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden, and it delivers. It discloses that no charge is made, that the returned total is bound to the job's documents, options, and recipient, that changes cause QUOTE_STALE, and that the tool commits the job to the autonomous payment rail. This is unusually transparent for a side-effect-bearing payment tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose and the no-charge guarantee, and most sentences add valuable behavior or usage context. It is slightly redundant because the autonomous payment rail is mentioned both in the usage sentence and the final commitment sentence, so it could be tightened.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that there are no annotations and no output schema, the description covers the key pieces an agent needs: return fields, side effects, staleness behavior, and when the tool should be used. The meaning of the pricing fingerprint is not explained, but it will be visible in the returned payload, so nothing essential is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema describes buyer_email well, and the description adds job-binding context that helps interpret job_handle. However, job_handle itself is never explicitly defined or connected to job creation, and since schema coverage is only 50%, the description only partially compensates for the undocumented parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific action: resolving the exact amount HIP will charge, and clearly states this operation does not charge anything. It also differentiates itself from hip_quote by explaining that hip_quote alone is not the payable amount due to Stripe tax calculation, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use it, namely when paying autonomously with a delegated payment authorization, and when not to use it, namely for a human paying in a browser. However, it does not name the sibling tool a human should use instead, such as hip_create_checkout, so the guidance stops short of providing a full alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hip_quoteBInspect
Exact price for the job, computed by the same pricing the website checkout uses. Tax, if any, is added by Stripe at payment.
| Name | Required | Description | Default |
|---|---|---|---|
| job_handle | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral disclosure burden. It usefully discloses that tax is not included in the quote but is added later by Stripe at payment, and that the price matches checkout pricing. It does not explicitly state whether the operation is read-only or has side effects, but the quote semantics make that largely inferable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short and front-loaded, with the main pricing statement first and the tax caveat second. No words are wasted, though adding a verb would make it stronger.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter quote tool this is mostly sufficient: it states the return value (exact price), the pricing source, and the tax handling. However, without annotations or an output schema, it would benefit from an explicit 'does not charge' statement and a note on where job_handle comes from.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides no description for job_handle (0% coverage), and the description only refers to 'the job' without explaining what a job_handle is, where it comes from, or its format. Since the description does not compensate for the missing schema documentation, this is a gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly conveys that the tool returns an exact price for a job and notes that it uses the same pricing as the website checkout. This is more specific than a tautology, but it does not use a clear imperative verb like 'get' or 'quote' and does not explicitly distinguish itself from sibling tools such as hip_create_checkout or hip_get_service_info.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The 'same pricing the website checkout uses' and tax-at-payment phrasing imply this is for retrieving a pre-payment quote, but the description never states when to prefer hip_quote over hip_create_checkout, hip_prepare_payment, or hip_get_order. No exclusions or alternative conditions are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hip_update_jobBInspect
Set the documents, print options and US mailing recipient on a job. Price fields are rejected: the server computes all amounts.
| Name | Required | Description | Default |
|---|---|---|---|
| files | No | ||
| options | No | ||
| recipient | No | US mailing address | |
| job_handle | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses a notable behavioral trait: 'Price fields are rejected: the server computes all amounts.' This is valuable because it tells the agent that price-related inputs are not accepted and the server will handle pricing. However, with no annotations at all, the description does not clarify other important behaviors like whether the update replaces or merges existing documents/options, or whether the job must be in a draft state.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, dense sentence that conveys the core purpose and includes a critical constraint. Every word earns its place; there is no fluff or repetition of schema details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given four parameters including nested objects, no output schema, and no annotations, the description is too thin. It does not explain whether the update is additive or a full replacement, what 'print options' are valid, whether recipient is optional, or what the server response looks like. The single behavioral hint about pricing is helpful but leaves many operational questions unanswered.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 25%, so the description must compensate. It maps the three major parameter groups (files, options, recipient) to 'documents, print options and US mailing recipient', but it does not explain field-level semantics, such as how files are structured (e.g., pages required, size/color enums), what keys options may contain, or which recipient fields are required. This is a high-level gloss rather than useful parameter guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Set' and the resource 'a job', and enumerates the specific attributes being modified: documents, print options, and US mailing recipient. It is distinct from the sibling tools by virtue of the update framing, though it does not explicitly name a sibling to differentiate from.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no explicit guidance about when to use this tool versus alternatives like hip_create_job or hip_quote. The phrase 'on a job' implies an existing job, but no prerequisites, sequencing, or exclusions are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
- Changed
hip_prepare_payment1 field changed- added
Input schema / properties / buyer_emailAdded value: +{ + "description": "optional: the buyer's email address. Have It Printed sends its order confirmation there once the payment succeeds.", + "type": "string" +}
2 tool updates
- Added
hip_complete_payment - Added
hip_prepare_payment
2 tool updates
- Removed
hip_complete_payment - Removed
hip_prepare_payment
10 tool updates
- First observed
hip_complete_payment - First observed
hip_create_checkout - First observed
hip_create_job - First observed
hip_get_checkout_status - First observed
hip_get_order - First observed
hip_get_service_info - First observed
hip_get_upload_target - First observed
hip_prepare_payment - First observed
hip_quote - First observed
hip_update_job
Related MCP Connectors
Mail real US letters, postcards and certified mail from an agent, quoted before sending.
Print & mail PDF/HTML/Markdown/text/DOCX/images to US addresses; pay per call in x402 USDC on Base.
Physical mail API for AI agents. Send letters, certified mail. Sandbox + live keys via MCP.
Prepare physical mail and fax quotes, review before payment, and track orders with OAuth.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to prepare, price, review, pay for, and send real physical letters and postcards via a hosted MCP server.-
- AlicenseAqualityDmaintenanceSend real physical postcards worldwide via AI agents. Supports single and bulk send (up to 500 recipients), balance checking, delivery tracking, and volume pricing from $0.72/card.54 npm5MIT
- AlicenseAqualityAmaintenanceEnables sending physical letters (including registered mail) from PDFs via the Pingen API, with tools to manage drafts, submit, track, and cancel letters.96 npmMIT
- AlicenseNot gradedqualityDmaintenanceMCP server that lets AI agents create reviewable physical mail drafts, validate quotes, and pay for postage via MPP or x402 protocols.2MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.