Skip to main content
Glama
hungln105-cell

notebooklm-mcp-cli

Collection Delete

collection_delete

Permanently delete a collection by ID while keeping its notebooks intact. Requires explicit confirmation to proceed.

Instructions

Delete a collection permanently. Notebooks inside the collection are NOT deleted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmNoMust be True after user approval
collection_idYesUUID of the collection

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.11.5

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full disclosure burden. It clearly communicates that the operation is permanent and does not cascade to notebooks. It could mention the need for confirm=true in the tool description itself, but 'permanently' and the non-deletion caveat cover the most critical behavioral traits.

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 short sentences with no filler. The core action is front-loaded, and the critical caveat about notebooks is placed immediately after, giving high information density with minimal verbosity.

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 destructive operation, the description captures permanence, non-cascading behavior, and the essential parameters are fully covered by the schema. The output schema exists, so return-value documentation is not necessary. Minor gap: the tool description itself does not state that confirm=true is required, though the schema covers this.

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%, and both parameters are already well documented: collection_id is a UUID, and confirm must be true after user approval. The tool description adds no additional parameter semantics beyond what the schema provides, so the baseline of 3 is appropriate.

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 and resource ('Delete a collection permanently') and clearly distinguishes itself from notebook deletion tools by noting that notebooks inside the collection are NOT deleted. This makes its purpose immediately unambiguous.

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 implicitly tells the agent when to use this tool: when a collection should be permanently removed while preserving its notebooks. It does not explicitly name alternatives, but the caveat about notebooks strongly implies that this is not for deleting notebooks.

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