Skip to main content
Glama
hungln105-cell

notebooklm-mcp-cli

Collection Create

collection_create

Create a new collection in NotebookLM, optionally including specific notebooks by UUID to organize related materials.

Instructions

Create a new collection.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesName of the collection
notebook_idsNoList of notebook UUIDs to include in the collection (optional)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.11.5

TDQS

C2.7/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only restates the action of creating without mentioning side effects, persistence, authentication requirements, error behavior, or any other behavioral trait that would help an agent predict the outcome beyond the name itself.

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 very concise with no filler words; the single sentence states the essential action efficiently. It is slightly redundant with the title, and it lacks structure for additional context, but as a brief description it is not bloated.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is a simple create operation with full schema parameter coverage and an output schema, which helps. However, with no annotations and no behavioral context, the description leaves important contextual gaps such as when to choose this over collection_edit, whether there are side effects, and what expectations exist around the created collection.

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 both parameters and the optional notebook_ids list. The description adds no parameter-level meaning, but because the schema fully covers parameter semantics, the baseline score of 3 is appropriate.

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

Purpose4/5

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

The description clearly states a verb ('Create') and a resource ('new collection'), making the core purpose unambiguous. It also implicitly distinguishes itself from sibling tools like collection_edit, collection_delete, and collection_list by the creation action, though it does not explicitly contrast with them.

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?

There is no explicit guidance on when to use this tool versus alternatives like collection_edit or collection_delete. The only usage signal is the word 'create', which implies a new collection should be made, but no context, exclusions, or alternative conditions are provided.

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