Skip to main content
Glama
hungln105-cell

notebooklm-mcp-cli

Notebook Query Start

notebook_query_start

Start an asynchronous query for source-heavy notebooks or long questions, returning a query ID to poll for results.

Instructions

Start a notebook query asynchronously for source-heavy notebooks or long questions.

Use this instead of notebook_query when the response may take longer than the default 120-second budget. A timeout around 180 seconds is a useful starting point for source-heavy notebooks. Returns immediately with a query_id. Poll notebook_query_status with the query_id to get the result.

Workflow: notebook_query_start -> poll notebook_query_status until completed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesQuestion to ask
timeoutNoWall-clock query budget in seconds (default: from env NOTEBOOKLM_QUERY_TIMEOUT or 120.0; source-heavy notebooks may need 180+)
source_idsNoSource IDs to query (default: all)
notebook_idYesNotebook UUID
conversation_idNoFor follow-up questions
new_conversationNoStart a fresh conversation when conversation_id is omitted

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.11.5

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It clearly states that the tool returns immediately with a query_id rather than waiting for the result, and that the result must be obtained by polling notebook_query_status. This is strong transparency, though it does not mention error behavior or side effects beyond asynchronous execution.

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 compact, front-loaded with the core purpose, and every sentence contributes: when to use it, timeout guidance, return behavior, and the follow-up workflow. There is no filler or redundant restating of the tool name.

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

Completeness5/5

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

The description provides a complete mental model for the agent: why this tool exists, when to prefer it, what to expect upon invocation, and how to retrieve the eventual result. The presence of an output schema further reduces the need to describe return values in prose.

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?

Input schema coverage is 100%, so the schema already documents all parameters meaningfully. The description reinforces the timeout guidance from the schema, but it does not add substantive new parameter-level semantics beyond that.

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 action (start an asynchronous query), a target use case (source-heavy notebooks or long questions), and a clear resource (notebook). It also distinguishes itself from sibling tools by naming notebook_query and notebook_query_status and explaining the async vs. polling relationship.

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

Usage Guidelines5/5

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

The description explicitly says to use this tool instead of notebook_query when the response may exceed the 120-second budget, and it provides a suggested 180-second timeout for source-heavy notebooks. It also gives a terse workflow: notebook_query_start -> notebook_query_status.

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