Skip to main content
Glama

Set a worker's webhook URL

set_webhook

Point one of your workers at an HTTPS URL. Tango will POST signed JSON events (task.assigned, task.commented, task.mentioned, task.handoff_received, task.deadline_soon) as they happen so your agent doesn't have to poll. Header X-Tango-Signature is 'sha256=' + hmac_sha256(secret, raw_body). The signing secret is returned exactly once, on the first set_webhook for a worker — hand it to the process that runs the worker and do not repeat it in chat. Later calls never re-reveal it; pass rotate_secret: true (or use rotate_webhook_secret) to replace it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
eventsNo
worker_idYes
rotate_secretNoMint a new signing secret and reveal it once. The previous secret stops validating immediately.

TDQS

A4.6/5.0
Behavior5/5

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

The description discloses several non-obvious behaviors beyond the minimal annotations: events are signed with X-Tango-Signature using HMAC-SHA256, the signing secret is returned exactly once, later calls never re-reveal it, and the secret should not be repeated in chat. This is exactly the kind of operational behavior an agent needs to safely invoke the tool.

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?

Four sentences, with the main purpose in the first clause and security-critical details following naturally. Every sentence earns its place: URL, event delivery, signature format, one-time secret reveal, and rotation path. No filler or repetition.

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?

For a tool with four parameters, no output schema, and minimal annotations, the description covers the core workflow, security handoff, and rotation mechanism quite completely. The only meaningful gap is the default behavior when `events` is omitted, which is a minor ambiguity relative to the thorough context provided.

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 only 25%, so the description carries real weight here. It adds meaning for url (must be HTTPS), events (enumerates the five event types), and rotate_secret (replace the secret, and later calls won't reveal it). It does not clarify whether omitting events subscribes to all listed events, and worker_id semantics are only implicit.

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 uses a concrete verb and resource: 'Point one of your workers at an HTTPS URL,' and specifies that Tango will POST signed JSON events. It clearly distinguishes setting a webhook from reading it, clearing it, or rotating its secret, even naming rotate_webhook_secret as a separate path.

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?

It provides a clear use case ('so your agent doesn't have to poll') and explains when to use rotate_secret or rotate_webhook_secret instead of re-calling set_webhook. However, it does not explicitly mention when to prefer clear_webhook or get_webhook, so the guidance is strong but not exhaustive.

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

A3.7/5.0
Disambiguation3/5

Most tools target a distinct resource and action, but several adjacent pairs are easy to confuse: add_comment vs add_progress_note, call_executor vs call_integration, log_client_decision vs update_client_context vs memory_save, and list_context_sources vs list_integrations. The descriptions do disambiguate them, but the boundaries are subtle enough that misselection is likely with 81 tools.

Naming Consistency4/5

The overwhelming majority follow a clear verb_noun snake_case pattern (create_task, update_project, list_integrations, set_webhook), and get_/ list_/ create_/ update_ families are predictable. Minor deviations exist: memory_read/memory_save/memory_search invert to object_verb, and bare nouns like whoami, glossary, and security_posture break the pattern, but there is no chaotic casing or mixed conventions.

Tool Count2/5

At 81 tools, this is far above the weight that is comfortable for an agent's tool-selection surface, especially since many tools belong to families that could be consolidated (webhooks, worker keys, project logs, context/memory). Although the domain is broad, the count will overwhelm agents and increase misrouting.

Completeness4/5

The surface is unusually comprehensive: tasks, projects, workers, leases, artifacts, comments, handoffs, webhooks, keys, context, memory, integrations, and support all have create/read/update/delete or equivalent lifecycle coverage. The gaps are minor, such as remove_dependency without a visible add_dependency and no artifact/comment deletion, but agents can work around them.

Resources