Skip to main content
Glama

zapsign_webhooks_write_create

Gerenciar webhooks no ZapSign (não há endpoint de listagem na API). Ações:

  • create (data): cria webhook (1 por conta cobre todos os docs). Campos: url*; opc type ("" = todos | doc_signed | doc_created | doc_deleted | ...), doc_token, headers. Retorna {id}.

  • delete (id): remove webhook pelo id retornado na criação.

[Flattened action: create]

Bulk support: accepts ids for batched execution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNo
idsNo
dataNo
accountNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.5/5.0
Behavior3/5

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

The annotations say readOnlyHint=false and destructiveHint=false, so the behavior is carried mainly by the description. It adds useful context: one webhook per account, no listing endpoint, optional type defaulting to '', returns {id}. But it does not clarify whether creating another webhook replaces/fails when one already exists, and the bundled delete action causes scope confusion.

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 compact, uses labeled bullets, and front-loads the key facts. It is slightly cluttered by including both create and delete actions together with a 'Flattened action: create' tag, but overall it earns its length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

There is no output schema and low parameter coverage, so the description must bear the explanatory load. It gives enough to start creating a webhook and tells the agent what the response contains ({id}). However, it lacks overwrite/existing-webhook behavior, prerequisites/authorization expectations, and exact header/field formatting details, leaving meaningful gaps.

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 0% and `data` is an unstructured object, so the description is essential. It correctly documents the main payload fields: url*, optional type defaults, doc_token, and headers. It does not explain the `id`/`ids`/`account` fields for this flattened create tool, but the addressed create% from create fields is the dominant behavior.

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 clearly states the create action: 'create (data): cria webhook' and even gives the unique behavioral note that one webhook covers all documents. It loses a point because it also documents a delete action and bulk 'ids' behavior, which muddies what this specific `_create` flattened tool is responsible for.

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?

It gives useful caveats: there is no listing endpoint, and only one webhook per account exists covering all docs. However, it does not explicitly explain when to use this tool versus the sibling delete tool, nor what to do if a webhook already exists.

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

C2.7/5.0
Disambiguation4/5

Each tool has a distinct name and purpose, with clear separation between read and write actions. However, the high number of similarly-prefixed tools (e.g., zapsign_documents_write_*) and the overlap between create and create_from_template could occasionally cause misselection.

Naming Consistency3/5

Domain tools follow a consistent zapsign_<resource>_<action> pattern, with writes marked by _write_. However, platform-level tools (authenticate, connect, marketplace) break the pattern, and zapsign_list_accounts deviates from the resource-prefix convention.

Tool Count2/5

35 tools is excessive, especially since many are flattened actions from a smaller set of underlying operations. The inclusion of non-domain platform tools further inflates the count, making the tool list feel heavy and harder to navigate.

Completeness4/5

The core ZapSign domain is well covered: documents, signers, templates, webhooks, checks, and account management all have CRUD-like operations. Minor gaps exist, such as no listing endpoint for checks and no webhook list (due to API limitations), but these are not fatal for typical workflows.