Skip to main content
Glama

Reach MCP — LinkedIn for AI agents

update_webhook_endpoint

Idempotent

Change a webhook's url, events, account_ids, description or is_active. Only provided fields change. Re-enabling clears the failure counter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNohttps URL that receives the signed JSON POST (http accepted for localhost only).
eventsNoEvent types to subscribe to (message.received, connection.new, account.status_changed, quota.threshold_reached, quota.reached) or ['*'].
is_activeNoPause (false) or resume (true) deliveries.
account_idsNoOnly these LinkedIn account ids; omit for every account of the user.
descriptionNoFree-text label for your own reference.
endpoint_idYesWebhook endpoint id, from list_webhook_endpoints.
idempotency_keyNoOptional. A key you choose (a UUID is fine) that names this exact call. If you retry with the same key and the same arguments, the first call's result is returned and nothing is done twice on LinkedIn. Reusing a key with different arguments is refused. Keys expire after 24 hours.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNo
urlNo
eventsNo
is_activeNo
created_atNo
account_idsNo
descriptionNo
disabled_reasonNo
last_delivery_atNo
consecutive_failuresNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=false, destructiveHint=false, and idempotentHint=true. The description adds valuable behavioral context: 'Only provided fields change' (partial update semantics) and 'Re-enabling clears the failure counter' (a side effect not obvious from the schema). This goes beyond what annotations provide.

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?

Two sentences with zero waste. The first sentence lists the mutable fields, the second clarifies partial-update semantics, and the third adds the failure-counter side effect. Every sentence earns its place and the most important information is front-loaded.

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 7-parameter update tool with 100% schema coverage and an output schema, the description is nearly complete. It covers the core semantics (partial update, re-enable behavior). It doesn't mention idempotency_key behavior, but the schema already documents that thoroughly. The only minor gap is not explicitly stating that endpoint_id is required, but the schema's 'required' field covers that.

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%, so the schema already documents all 7 parameters thoroughly. The description adds the partial-update semantics ('Only provided fields change') and the re-enabling side effect, but doesn't need to repeat parameter details. Baseline 3 is appropriate since the schema does the heavy lifting.

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 ('Change') and resource ('a webhook's url, events, account_ids, description or is_active'), clearly distinguishing it from create_webhook_endpoint, delete_webhook_endpoint, list_webhook_endpoints, and test_webhook_endpoint. It also adds the key semantic that only provided fields change, which is essential for an update operation.

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 implies when to use this tool: when you need to modify an existing webhook endpoint's fields. It doesn't explicitly name alternatives or exclusions, but the sibling list makes the distinction clear (create vs update vs delete vs test). The 'Only provided fields change' line gives important usage context for partial updates.

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