Skip to main content
Glama
hungln105-cell

notebooklm-mcp-cli

Chat Get

chat_get

Retrieve the full transcript of a chat session from a Gemini Notebook. Provide a notebook ID and optional conversation ID to fetch the complete conversation text.

Instructions

Get full transcript of a specific chat session.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
notebook_idYesNotebook ID or title alias
conversation_idNoOptional conversation ID (defaults to latest active session)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.11.5

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It does convey that the tool returns a full transcript of a specific session and implies a read-only retrieval. However, it does not mention potential large payloads, behavior when conversation_id is omitted (though the schema notes the default), or any failure/edge-case behavior.

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 one clear, front-loaded sentence with no filler or redundant wording. It communicates the core purpose efficiently.

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

Completeness3/5

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

For a simple retrieval tool with a full input schema and output schema present, the description is minimally adequate. However, it lacks guidance on how to choose this tool over chat_list or chat_export, and does not mention any operational nuances, making it only barely complete for an agent.

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 input schema has 100% description coverage, clearly documenting notebook_id and conversation_id, including the default behavior. The description adds little beyond the schema, so the baseline score of 3 is appropriate.

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 clearly states the action ('Get') and the resource ('full transcript of a specific chat session'). It is specific enough to convey what the tool does, though it does not explicitly distinguish itself from sibling tools like chat_list or chat_export.

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 provided about when to use this tool versus alternatives such as chat_list or chat_export. The agent is left to infer the appropriate context from the name and description alone.

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