Skip to main content
Glama
hungln105-cell

notebooklm-mcp-cli

Notebook Share Status

notebook_share_status

Check a notebook's sharing settings and collaborators to see who currently has access.

Instructions

Get current sharing settings and collaborators.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
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?

There are no annotations, so the description carries the full burden for behavioral disclosure. 'Get current...' clearly implies a read-only status operation rather than a mutation, but it does not mention permissions, session requirements, or explicitly state that no changes are made. It is minimally transparent but leaves some behavioral details to inference.

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 that gets straight to the operation and target resource. There is no filler, repetition, or unnecessary detail.

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?

One parameter, an output schema, and a simple read operation make this a low-complexity tool. The description plus schema cover what the tool returns and what input is required, though the lack of usage guidance remains a minor 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?

The single parameter is fully described in the schema as 'Notebook UUID,' so schema coverage is 100%. The description adds no additional parameter semantics, but the schema already provides the required meaning. A baseline 3 is appropriate here.

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 'Get' as a specific verb and identifies the exact resource: current sharing settings and collaborators. This clearly distinguishes the tool from mutating share siblings like notebook_share_public, notebook_share_invite, and notebook_share_batch, and from general notebook_get/notebook_describe.

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?

No guidance is given on when to use this tool versus the other sharing tools or notebook_describe. The description states what the tool does but provides no condition, prerequisite, or 'use this when' cue.

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