Skip to main content
Glama
beel-es

BeeL MCP server

Official
by beel-es

beel_list_webhook_subscriptions

Read-onlyIdempotent

Retrieve webhook subscriptions for an account, both active and inactive, to review registered endpoints and their status.

Instructions

Returns the webhook subscriptions of the account in the path, active and inactive alike. Every member of the account sees the same list: who registered a subscription is authorship, not visibility. The signing secrets are never included.

Endpoint: GET /v1/accounts/{account_id}/webhooks

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number, starting at 1. The response echoes it back as `pagination.current_page`.
limitNoHow many items to return per page. The response echoes it back as `pagination.items_per_page`.
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.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.5.0
    • addedInput schema / additionalProperties
      Added value: +false
  2. First observedv0.3.1

TDQS

A4.3/5.0
Behavior5/5

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

Annotations already mark the operation read-only and idempotent, and the description adds meaningful behavior beyond that: both active and inactive subscriptions are returned, subscription authorship does not affect visibility, and signing secrets are never included. This gives an agent accurate expectations about data scope and sensitive-field exclusion without contradicting 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?

Three tightly packed sentences plus the endpoint line convey scope, visibility semantics, secret exclusion, and the exact HTTP verb/path. No word is wasted, and the most important fact — what is returned — comes first.

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 read-only list operation with a fully documented schema and clear annotations, everything an agent needs to invoke it correctly is present: the account scoping rule, the active/inactive inclusion, the visibility model, the secret-exclusion caveat, and the endpoint. Pagination is already covered in the schema descriptions.

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 the input schema already provides thorough documentation, especially for account_id: it clarifies ownership, delegation, and the 403 behavior. The description itself does not add parameter-level meaning beyond the endpoint path reference, so the baseline 3 is appropriate.

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 and resource: returns webhook subscriptions for the account identified in the path, including both active and inactive. The plural 'subscriptions' and the GET endpoint clearly distinguish it from single-subscription tools such as beel_get_webhook_subscription, and the scoping to accounts distinguishes it from webhook deliveries.

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 implies the intended use by defining exactly what the tool returns and the account scoping rule, but it does not explicitly state when to prefer this over sibling tools like beel_get_webhook_subscription or beel_list_webhook_deliveries. The account visibility and secret-exclusion notes provide useful context, but no direct alternatives 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.

Deploy Server

Other Tools