Skip to main content
Glama
hungln105-cell

notebooklm-mcp-cli

Notebook Share Public

notebook_share_public

Control public link access for a notebook by enabling or disabling sharing with a single boolean flag.

Instructions

Enable or disable public link access.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
is_publicNoTrue to enable public link, False to disable (default: True)
notebook_idYesNotebook UUID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.11.5

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description must disclose behavior itself, and it does state the core mutation: enabling or disabling public link access. It does not mention side effects, permission requirements, or whether toggling affects existing access, but the simple boolean semantics keep this minimally transparent.

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?

A single sentence states the action and object with no filler. It is front-loaded and appropriately sized for a two-parameter toggle tool.

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 simple boolean toggle with an output schema and fully described parameters, the description covers the essential operation. It does not discuss when to use it versus sharing alternatives, but the low complexity means this is not a critical 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 parameter descriptions already explain notebook_id and is_public. The tool description adds little beyond labeling the action 'public link access,' which maps directly to is_public, so it meets the baseline without adding new semantics.

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 uses a specific verb pair (enable/disable) and a clear resource (public link access), so an agent knows this tool toggles public sharing for a notebook. It does not explicitly name sibling tools, but the operation is distinct from notebook_share_status, notebook_share_invite, and notebook_share_batch.

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

Usage Guidelines3/5

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

The intended use is implied by the description: call this when you need to turn a notebook's public link on or off. However, it gives no explicit guidance about when to prefer this over the sibling sharing tools or any prerequisites/exclusions.

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