Skip to main content
Glama
hungln105-cell

notebooklm-mcp-cli

Notebook Delete

notebook_delete

Permanently delete a notebook by ID. Requires explicit confirmation to prevent accidental data loss.

Instructions

Delete notebook permanently. IRREVERSIBLE. Requires confirm=True.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmNoMust be True after user approval
notebook_idYesNotebook UUID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.11.5

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations, the description fully carries the safety burden. It discloses that the operation is permanent and irreversible and adds the guardrail that confirmation is mandatory. This is strong behavioral disclosure for a destructive mutation tool, despite not enumerating every possible side effect.

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?

The description is three short clauses with no filler, and the most important safety facts (permanent, irreversible, confirmation) are front-loaded. Every sentence contributes essential information.

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 two-parameter destructive tool, the description plus the fully documented schema and output schema leave the agent with everything it needs: the target ID, the confirmation requirement, and the irreversibility warning. No critical context is missing.

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 baseline is 3. The description's 'Requires confirm=True' restates the schema's own 'Must be True after user approval' without adding new syntactical or semantic detail about notebook_id.

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 object ('Delete notebook') plus the critical modifier 'permanently,' making the destructive scope unmistakable. This clearly separates it from sibling tools like notebook_rename and notebook_describe, which do not destroy the notebook.

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 text gives clear context: this tool exists for permanent deletion, and it explicitly states the precondition 'Requires confirm=True.' It does not name alternative tools or exclusions, but the semantics and sibling names make the correct usage obvious.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.