Skip to main content
Glama

Resend Webhooks

resend_webhooks
Destructive

Replays all webhook events for a tracker. Use when your endpoint missed or failed to process previous notifications. Terminates any in-flight webhook delivery for this tracker and invalidates its existing webhook payload records before regenerating and resending them — do not call repeatedly in quick succession. Rate-limited to 1 request/second per tracker.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
searchByNoHow to interpret trackerId: default is Ship24 trackerId, use "clientTrackerId" for your own reference.
trackerIdYesShip24 trackerId, or clientTrackerId when searchBy="clientTrackerId".

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
summaryYesOutcome of the webhook replay.

TDQS

A4.7/5.0
Behavior5/5

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

Description goes well beyond the annotations, disclosing that it terminates in-flight deliveries, invalidates existing webhook payload records, and regenerates/resends them. It also adds the rate-limit detail. Nothing contradicts the destructiveHint=true or idempotentHint=false 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?

Three sentences with no filler: main action, use case, then critical warnings. The destructive behavior and rate limit are front-loaded in the same compact block, making the tool's risk profile immediately visible.

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?

For a destructive, non-idempotent tool, the description discloses side effects, rate limiting, and appropriate invocation context. An output schema exists, so return-value documentation is not required here. The description is complete enough for an agent to call it safely with the provided schema.

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%, with both searchBy and trackerId already documented inline. The description adds no new parameter-level detail beyond referring to 'a tracker,' so the baseline of 3 applies.

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?

Description opens with a specific verb+resource: 'Replays all webhook events for a tracker.' It clearly separates this from siblings like download_webhook_history by focusing on replay/resend rather than retrieval. The use case 'when your endpoint missed or failed to process previous notifications' further pins down the purpose.

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 states when to use: 'Use when your endpoint missed or failed to process previous notifications.' It also gives a clear when-not: 'do not call repeatedly in quick succession,' plus a rate-limit constraint. While it does not name an alternative sibling, the stated context is sufficient for an agent to decide.

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

A3.9/5.0
Disambiguation2/5

Several tools appear to answer the same 'where is my package?' question: search_tracking, search_tracking_by_number, track, and get_tracking_results. The descriptions explain subtle differences around billing, persistence, and account state, but the tool boundaries are still easy to blur during selection.

Naming Consistency4/5

Most tools follow a consistent snake_case verb_noun pattern such as create_tracker, get_tracker, list_trackers, update_tracker, and bulk_create_trackers. The bare verb 'track' breaks the pattern, and search_tracking_by_number is a bit awkward, but overall naming is predictable.

Tool Count5/5

Twelve tools is a reasonable, well-scoped size for a tracking service covering tracker lifecycle management, batch creation, search, couriers, and webhook operations. The count feels justified rather than padded.

Completeness3/5

The surface covers create, get, list, update, bulk creation, search, and webhook history/replay, which is fairly comprehensive. However, there is no delete_tracker or equivalent removal tool, leaving a notable lifecycle gap for stopping or cleaning up trackers.

Resources