Skip to main content
Glama
beel-es

BeeL MCP server

Official
by beel-es

beel_retry_webhook_delivery

Retry a failed webhook delivery by resending its original payload immediately and logging a new delivery attempt. Preserves the original entry and uses the captured payload, not current data.

Instructions

Re-sends the original payload of a delivery immediately and records the outcome as a new entry in the delivery history; the original entry is kept as it was. The payload is the one captured when the event happened, not a fresh snapshot, so changes made to the entity since then are not reflected.

Endpoint: POST /v1/accounts/{account_id}/webhooks/{webhook_id}/deliveries/{delivery_id}/retry

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
account_idYesYour own account, or an account you provisioned. It — not the credential, and not the `BeeL-Active-Company` header — decides which account the operation acts on. An account you do not reach answers `403`, and so does an account that does not exist, so the existence of somebody else's account is never disclosed.
webhook_idYesSubscription of the account in the path. A subscription of another account answers `404`, the same as one that does not exist: under the account resolved from `{account_id}` it simply is not there.
delivery_idYesDelivery attempt of that subscription to replay.
idempotency_keyNoOptional idempotency key for this operation. Omit it and one is derived from the request itself, which makes a blind retry safe but also collapses a SECOND, deliberately identical operation into the first for 24 hours. Set it — to an order id, or anything unique per intended operation — whenever you mean to create something that may look identical to what you just created.
Behavior5/5

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

Annotations already declare readOnlyHint=false, openWorldHint=true, idempotentHint=false, and destructiveHint=false. The description adds substantial behavior: it immediately resends the original payload, records a new delivery entry while keeping the original, and emphasizes that the payload is the one captured at event time (not a fresh snapshot). This goes well beyond annotations, clarifying side effects (new entry) and the snapshot nature. No contradiction with annotations.

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 two clear sentences plus an endpoint line. It front-loaded the primary action ('Re-sends the original payload') and adds the key nuance about the payload being original. Every sentence adds value without filler; however, it could be tightened by integrating the endpoint into the first sentence, though it remains appropriately concise and well-structured.

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 explains the core behavior, side effects, and payload semantics, which is complete for a retry action. It omits explicit usage guidance vs. alternatives (covered under usage_guidelines) but schema descriptions already handle error codes and idempotency. No output schema exists, so no return-value explanation is needed. The only gap is the lack of explicit 'when to use vs. siblings', but overall the definition is nearly complete.

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%, and each parameter in the schema already carries detailed semantic descriptions (e.g., account_id explains 403 behavior, webhook_id explains 404, idempotency_key explains blind retry vs. collision). This description does not add any parameter-specific information beyond what the schema provides; it relies entirely on the schema. Baseline 3 is appropriate because schema does the heavy lifting and description adds nothing extra for params.

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 states a specific verb ('re-sends the original payload') and resource ('a delivery'), and clarifies its scope precisely. It distinguishes itself from siblings like beel_retry_payment_event (different resource) and beel_test_webhook_subscription (test vs. actual retry) by focusing on delivery retry with retained original entry. The action is unambiguous and unique among a large sibling set.

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

Usage Guidelines3/5

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

The description explains what the tool does and its payload behavior, but does not explicitly mention when to use it over alternatives (e.g., beel_retry_payment_event or beel_test_webhook_subscription). There is no 'use this when...' guidance or exclusions. The context implies usage for replaying a failed delivery, but the dimension requires explicit alternatives or conditions; this is only implied.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/beel-es/beel-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server