Skip to main content
Glama
hungln105-cell

notebooklm-mcp-cli

Collection Set Emoji

collection_set_emoji

Set or clear the emoji marker on a NotebookLM collection by providing its UUID and an emoji character. Use an empty string to remove the marker.

Instructions

Set or clear the emoji marker on a collection.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emojiYesEmoji character (use empty string "" to clear)
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

A3.8/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden of behavioral disclosure. It states the operation but does not mention side effects, permission requirements, reversibility, or idempotency for a mutating tool, leaving important behavioral context unstated.

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 a single, front-loaded sentence with no filler. Every word earns its place.

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?

With only two fully documented parameters and an output schema available, the description and schema together are sufficient for correct invocation. The main omission is behavioral context, but the tool's simple scope keeps this from being a major gap.

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 coverage is 100%, so the schema already describes both parameters, including the empty-string clear behavior for emoji. The description does not add meaning beyond this, so the baseline 3 applies.

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 specific verb ('set or clear') with a specific resource ('the emoji marker on a collection'), making the tool's function unambiguous. This clearly distinguishes it from sibling tools like collection_edit, which would handle other collection properties.

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 gives clear context: use this tool exactly when you need to set or clear a collection's emoji marker. It does not explicitly name alternatives or exclusions, but the operation is self-contained enough that an agent can infer when to invoke it.

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