Skip to main content
Glama

notion_delete_webhook

DestructiveIdempotent

Delete a Notion webhook through the project's governed connector, removing the configured endpoint and stopping future event deliveries.

Instructions

Notion connector operation delete_webhook (platform tool notion.delete_webhook).

Routes only through the exact project/account governed connector authority.

Args: arguments: JSON string of arguments for the connector operation. project_id: Authenticated Project UUID. project_ref: Exact project correlation reference. connector_account_ref: Project-bound connector account alias. idempotency_key: Stable business-action identity. effect: Claimed read or write effect; Spring verifies it. approval_ref: Approved platform task UUID when resuming a write.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
effectNo
argumentsNo{}
project_idNo
project_refNo
approval_refNo
idempotency_keyNo
connector_account_refNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changedv0.1.1
    • addedInput schema / properties / approval_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Approval Ref"
      +}
    • addedInput schema / properties / connector_account_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Connector Account Ref"
      +}
    • addedInput schema / properties / effect
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Effect"
      +}
    • addedInput schema / properties / idempotency_key
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Idempotency Key"
      +}
    • addedInput schema / properties / project_id
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Project Id"
      +}
    • addedInput schema / properties / project_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Project Ref"
      +}
  2. First observedv0.1.0

TDQS

C2.9/5.0
Behavior3/5

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

Annotations already disclose the critical safety profile (destructiveHint=true, readOnlyHint=false, idempotentHint=true), so the bar is lower. The description adds useful governance context — the 'exact project/account governed connector authority' routing, Spring's verification of the claimed 'effect', and approval_ref being required 'when resuming a write' — but it never discloses what happens at the Notion end (webhook removed, irreversibility, impact on subscribed integrations). No contradiction with annotations.

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 (~100 words) and well-structured: identity line, routing constraint, then a flat Args list with each parameter on its own line. Every sentence earns its place, and the structure makes the plumbing parameters easy to scan, though the content is somewhat boilerplate-generic across connector tools.

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?

An output schema exists, so return values need not be explained, and annotations cover the destructive/idempotent profile. Still, for a 7-parameter destructive operation with an undocumented schema, the description omits the actual contract of the 'arguments' payload (what identifies the webhook to delete), any prerequisites (webhook must exist), and the concrete effect of deletion on Notion.

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?

With 0% schema description coverage, the description carries the full burden, and it does provide one-line semantics for all 7 parameters (e.g., 'Stable business-action identity' for idempotency_key, 'Approved platform task UUID when resuming a write' for approval_ref). However, the most tool-specific parameter, 'arguments', is described only as a generic 'JSON string of arguments for the connector operation' — the actual delete payload (the webhook identifier) is left to inference.

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

Purpose3/5

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

The verb+resource is carried almost entirely by the tool name itself ('delete_webhook'); the description's opening line merely restates it as 'Notion connector operation delete_webhook' rather than explaining what deleting a webhook accomplishes. The 'Notion connector' framing does at least scope it against cross-platform siblings like jira_delete_webhook, clio_delete_webhook, and monday_delete_webhook, so it is not a pure tautology.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives such as notion_list_webhooks, notion_create_webhook, or notion_update_webhook. The line 'Routes only through the exact project/account governed connector authority' is an implementation/routing constraint, not usage direction; it does not help an agent decide when deletion is the right operation.

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