Skip to main content
Glama

list_webhook_endpoints

Read-onlyIdempotent

List the member's webhooks (name, URL, events, keyword rules, status), without secrets. Legacy agent callback settings are separate. Requires webhook.manage. Uses the same bounded control plane and tenant/agent/Live-Sandbox authorization as /api/v1/webhooks/endpoints. Reuse the exact idempotency_key and input after an uncertain mutation. Webhook docs: https://mailbox.bot/docs/webhooks.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changed
    • changedOutput schema / properties / result / properties / endpoints / items / properties / event_types / items / enum
      Previous value: -[
      -  "inbound.received",
      -  "inbound.scan_available",
      -  "inbound.context_ready",
      -  "inbound.rule_matched",
      -  "inbound.action_completed",
      -  "inbound.action_failed",
      -  "mail.submitted",
      -  "mail.ready",
      -  "mail.mailed",
      -  "mail.delivered",
      -  "mail.failed",
      -  "mail.cancelled",
      -  "mail.pending_approval"
      -]New value: +[
      +  "inbound.received",
      +  "inbound.action.requested",
      +  "inbound.action.completed",
      +  "inbound.pages_ready",
      +  "inbound.keywords_matched"
      +]
    • changedOutput schema / properties / result / properties / endpoints / items / properties / status / enum
      Previous value: -[
      -  "pending_verification",
      -  "active",
      -  "paused"
      -]New value: +[
      +  "active",
      +  "paused"
      +]
    • removedOutput schema / properties / result / properties / endpoints / items / properties / verified_at
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "format": "date-time",
      -      "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$",
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ]
      -}
    • changedOutput schema / properties / result / properties / endpoints / items / required
      Previous value: -[
      -  "name",
      -  "url",
      -  "agent_id",
      -  "environment",
      -  "event_types",
      -  "rules",
      -  "id",
      -  "member_id",
      -  "status",
      -  "revision",
      -  "verified_at",
      -  "created_at",
      -  "updated_at",
      -  "last_delivery_at",
      -  "last_http_status",
      -  "failure_count",
      -  "signing_key_prefix",
      -  "previous_key_expires_at"
      -]New value: +[
      +  "name",
      +  "url",
      +  "agent_id",
      +  "environment",
      +  "event_types",
      +  "rules",
      +  "id",
      +  "member_id",
      +  "status",
      +  "revision",
      +  "created_at",
      +  "updated_at",
      +  "last_delivery_at",
      +  "last_http_status",
      +  "failure_count",
      +  "signing_key_prefix",
      +  "previous_key_expires_at"
      +]
    • addedOutput schema / properties / result / properties / sample_item_id
      Added value: +{
      +  "anyOf": [
      +    {
      +      "format": "uuid",
      +      "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null
      +}
    • changedOutput schema / properties / result / required
      Previous value: -[
      -  "enabled",
      -  "endpoints",
      -  "source_delivery",
      -  "agents",
      -  "limits"
      -]New value: +[
      +  "enabled",
      +  "endpoints",
      +  "source_delivery",
      +  "agents",
      +  "sample_item_id",
      +  "limits"
      +]
  2. Added

TDQS

A4/5.0
Behavior5/5

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

Annotations already cover readOnly, idempotent, non-destructive, and closed-world behavior; the description goes beyond them by disclosing the required permission (webhook.manage), the authorization scope (tenant/agent/Live-Sandbox), and that secrets are not returned. It also clarifies that legacy agent callback settings are out of scope, adding meaningful behavioral context without contradicting annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The main action is front-loaded and the description is reasonably compact, but not every sentence earns its place: 'Reuse the exact idempotency_key and input after an uncertain mutation' seems copied from mutation tools and is confusing for a read-only, zero-input list endpoint. The permission and auth sentences are dense but relevant, keeping the description somewhat efficient overall.

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 zero-parameter, read-only tool with a rich output schema and annotations, the description is nearly complete: it covers scope, permission, authorization boundaries, exclusions, and provides a documentation link. The irrelevant idempotency note is a minor clarity issue but does not leave an agent without the information needed to call the tool correctly.

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?

The tool has zero parameters and the input schema is complete, so there is nothing for the description to add about individual parameters; the baseline-4 rule applies. The description does add value by specifying what the returned webhook data includes and excludes, which helps an agent interpret the output.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource—'List the member's webhooks'—and enumerates the returned fields (name, URL, events, keyword rules, status) while excluding secrets. It also notes that legacy agent callback settings are separate, but it does not explicitly name sibling tools like list_webhook_deliveries or create/update endpoints, so the sibling differentiation is partial.

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 gives an implicit exclusion for legacy agent callback settings and mentions the required permission and authorization model, which is useful. However, it does not explicitly say when to prefer this tool over sibling webhook tools (e.g., list_webhook_deliveries for delivery history), and the idempotency instruction appears aimed at mutations rather than this zero-parameter read.

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.

Resources