Skip to main content
Glama
easyparser-com

Easyparser

Official

get_bulk_webhook_logs

Read-only

Check webhook delivery logs for bulk jobs to find why a completed job's callback wasn't delivered. Filter by job, status, or date to verify delivery success and timestamps.

Instructions

Check webhook delivery logs for bulk jobs: whether the completion notification was delivered to the user's callback_url, delivery status, and timestamps. Use this when a job shows as completed but the user's system never received the webhook — the classic "job finished but my integration didn't fire" debugging case.

Scope to one job with group_id (from list_bulk_jobs), or omit it to scan recent deliveries across all jobs. This tool is free of per-call credits.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number. Default 1.
limitNoItems per page (max 1000). Default 100.
statusNoFilter by delivery status (e.g. 'success', 'failed').
date_toNoISO date upper bound.
group_idNoScope logs to one job's group_id. Omit to see recent webhook deliveries across all jobs.
date_fromNoISO date lower bound.
request_idNoFilter by an individual request ID.
sort_directionNoSort by creation time. 'desc' (newest first) is default.desc
bulk_request_idNoFilter by the job's bulk_request_id.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.4.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, and the description is consistent with them. It adds useful behavioral context beyond annotations, notably that the tool is free of per-call credits and that omitting group_id scans recent deliveries across all jobs.

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: purpose, concrete use case, scoping guidance, and cost note each earn their place. It front-loads the most important information and avoids redundant restatement of the schema.

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 9-parameter, fully optional tool with no output schema, the description gives enough context to call it correctly: what it returns conceptually, when to use it, how to narrow scope, and cost implications. The schema covers the remaining parameter syntax details.

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

Parameters4/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 adds extra meaning for group_id by tying it to list_bulk_jobs and explaining the omit-to-scan-all behavior, which is not fully conveyed by the bare schema text.

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 checks webhook delivery logs for bulk jobs, including whether completion notifications were delivered, delivery status, and timestamps. It distinguishes itself from sibling tools like get_error_logs and list_bulk_jobs by naming the exact resource and debugging scenario.

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

Usage Guidelines4/5

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

The description gives a concrete trigger for use: when a job shows as completed but the user's system never received the webhook. It also explains the key scoping choice between group_id and scanning all jobs. However, it does not explicitly mention when not to use it or name alternatives.

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