Skip to main content
Glama

notebook_query_start

Start an asynchronous notebook query to handle long or source-heavy questions. Returns a query ID immediately, so you can poll for results without waiting.

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.

Args: notebook_id: Notebook UUID query: Question to ask source_ids: Source IDs to query (default: all) conversation_id: For follow-up questions timeout: Wall-clock query budget in seconds (default: from env NOTEBOOKLM_QUERY_TIMEOUT or 120.0; source-heavy notebooks may need 180+) new_conversation: Start a fresh conversation when conversation_id is omitted

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYes
timeoutNo
source_idsNo
notebook_idYes
conversation_idNo
new_conversationNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changedv0.9.12
    • addedInput schema / properties / new_conversation
      Added value: +{
      +  "default": false,
      +  "type": "boolean"
      +}
    • changedInput schema / properties / source_ids / anyOf
      Previous value: -[
      -  {
      -    "items": {
      -      "type": "string"
      -    },
      -    "type": "array"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "type": "string"
      +  },
      +  {
      +    "items": {
      +      "type": "string"
      +    },
      +    "type": "array"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
  2. Addedv0.9.1
  3. Removedv0.8.9
  4. Changed5 schema fields changedv0.7.7
    • removedInput schema / properties / conversation_id / description
      Removed value: -"For follow-up questions"
    • removedInput schema / properties / notebook_id / description
      Removed value: -"Notebook UUID"
    • removedInput schema / properties / query / description
      Removed value: -"Question to ask"
    • removedInput schema / properties / source_ids / description
      Removed value: -"Source IDs to query (default: all)"
    • removedInput schema / properties / timeout / description
      Removed value: -"Request timeout in seconds (default: from env NOTEBOOKLM_QUERY_TIMEOUT or 120.0)"
  5. First observedv0.6.13

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly states the asynchronous nature, immediate return of a query_id, the need to poll status, and the timeout budget. It could additionally mention failure modes or whether starting a query mutates conversation state, but the core behavior is well covered.

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 front-loaded with purpose and usage, followed by a compact workflow line and an Args block. It is slightly repetitive around the 120-second/180-second timeout guidance, but every sentence contributes useful information and the structure is easy to scan.

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 six-parameter asynchronous tool with no annotations, the description covers the essential workflow, timeout behavior, and parameter meanings. An output schema exists, so the return shape need not be repeated. It stops short of explaining status semantics or error/timeout outcomes, but the explicit polling workflow mitigates that gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate, and it largely does: all six parameters are named with semantic explanations and defaults, such as 'source_ids: Source IDs to query (default: all)' and 'timeout: Wall-clock query budget in seconds'. Minor ambiguities remain around new_conversation and conversation_id interaction, but the description adds substantial meaning beyond the bare schema.

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 opens with a specific verb and resource: 'Start a notebook query asynchronously.' It clearly distinguishes itself from notebook_query by framing this as the variant for source-heavy notebooks or long questions, so an agent can identify the tool's role among siblings.

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?

It explicitly tells the agent when to choose this tool: 'Use this instead of notebook_query when the response may take longer than the default 120-second budget.' It also provides the follow-up workflow, 'notebook_query_start -> poll notebook_query_status until completed', which is direct, actionable guidance.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jacob-bd/gemini-notebook-mcp-cli'

If you have feedback or need assistance with the MCP directory API, please join our Discord server