notebooklm-mcp-cli

Programmatic access to Google NotebookLM — via command-line interface (CLI) or Model Context Protocol (MCP) server.

NotebookLM Web Importer

นำเข้าหน้าเว็บและวิดีโอ YouTube ไปยัง NotebookLM ด้วยคลิกเดียว ผู้ใช้กว่า 200,000 คนไว้วางใจ

ติดตั้งส่วนขยาย Chrome

MCP Guide

Complete reference for the NotebookLM MCP server — 35 tools for AI assistants.

Installation

# Install the package
uv tool install notebooklm-mcp-cli

# Add to Claude Code
claude mcp add --scope user notebooklm-mcp notebooklm-mcp

# Add to Gemini CLI
gemini mcp add --scope user notebooklm-mcp notebooklm-mcp

Authentication

Before using MCP tools, authenticate:

nlm login

Or use the standalone auth tool:

nlm login

Tool Reference

Notebooks (6 tools)

ToolDescription
notebook_listList all notebooks
notebook_createCreate new notebook
notebook_getGet notebook details with sources
notebook_describeGet AI summary and suggested topics
notebook_renameRename a notebook
notebook_deleteDelete notebook (requires confirm=True)

Sources (6 tools)

ToolDescription
source_addUnified - Add URL, text, file, or Drive source
source_list_driveList sources with Drive freshness status
source_sync_driveSync stale Drive sources
source_deleteDelete source (requires confirm=True)
source_describeGet AI summary with keywords
source_get_contentGet raw text content

source_add parameters:

source_add(
    notebook_id="...",
    source_type="url",        # url | text | file | drive
    url="https://...",        # for source_type=url
    text="...",               # for source_type=text
    title="...",              # optional title
    file_path="/path/to.pdf", # for source_type=file
    document_id="...",        # for source_type=drive
    doc_type="doc",           # doc | slides | sheets | pdf
    wait=True,                # wait for processing to complete
    wait_timeout=120.0        # seconds to wait
)

Querying (2 tools)

ToolDescription
notebook_queryAsk AI about sources in notebook
chat_configureSet chat goal and response length

Studio Content (4 tools)

ToolDescription
studio_createUnified - Create any artifact type
studio_statusCheck generation progress
studio_deleteDelete artifact (requires confirm=True)
studio_reviseRevise slides in existing deck (requires confirm=True)

studio_create artifact types:

  • audio - Podcast (formats: deep_dive, brief, critique, debate)
  • video - Video overview (formats: explainer, brief)
  • report - Text report (Briefing Doc, Study Guide, Blog Post)
  • quiz - Multiple choice quiz
  • flashcards - Study flashcards
  • mind_map - Visual mind map
  • slide_deck - Presentation slides
  • infographic - Visual infographic
  • data_table - Structured data table

Downloads (1 tool)

ToolDescription
download_artifactUnified - Download any artifact type

download_artifact types: audio, video, report, mind_map, slide_deck, infographic, data_table, quiz, flashcards

Exports (1 tool)

ToolDescription
export_artifactExport to Google Docs/Sheets

Research (3 tools)

ToolDescription
research_startStart web/Drive research
research_statusPoll research progress
research_importImport discovered sources (timeout and cited_only supported)

Notes (1 unified tool)

ToolDescription
noteUnified - Manage notes (action: list, create, update, delete)

note actions:

note(notebook_id, action="list")             # List all notes
note(notebook_id, action="create", content="...", title="...")
note(notebook_id, action="update", note_id="...", content="...")
note(notebook_id, action="delete", note_id="...", confirm=True)

Sharing (3 tools)

ToolDescription
notebook_share_statusGet sharing settings
notebook_share_publicEnable/disable public link
notebook_share_inviteInvite collaborator by email

Auth (2 tools)

ToolDescription
refresh_authReload auth tokens
save_auth_tokensSave cookies (fallback method)

Server (1 tool)

ToolDescription
server_infoGet version and check for updates

Batch & Cross-Notebook (2 tools)

ToolDescription
batchUnified — Batch operations across multiple notebooks (action: query, add_source, create, delete, studio)
cross_notebook_queryQuery multiple notebooks and get aggregated answers with per-notebook citations

batch actions:

batch(action="query", query="What are the key findings?", notebook_names="AI Research, Dev Tools")
batch(action="add_source", source_url="https://...", tags="ai,research")
batch(action="create", titles="Project A, Project B, Project C")
batch(action="delete", notebook_names="Old Project", confirm=True)
batch(action="studio", artifact_type="audio", tags="research", confirm=True)

cross_notebook_query:

cross_notebook_query(query="Compare approaches", notebook_names="Notebook A, Notebook B")
cross_notebook_query(query="Summarize", tags="ai,research")
cross_notebook_query(query="Everything", all=True)

Pipelines (1 tool)

ToolDescription
pipelineUnified — List or run multi-step workflows (action: list, run)

pipeline actions:

pipeline(action="list")  # List available pipelines
pipeline(action="run", notebook_id="...", pipeline_name="ingest-and-podcast", input_url="https://...")

Built-in pipelines: ingest-and-podcast, research-and-report, multi-format

Tags & Smart Select (1 tool)

ToolDescription
tagUnified — Tag notebooks and find relevant ones (action: add, remove, list, select)

tag actions:

tag(action="add", notebook_id="...", tags="ai,research,llm")
tag(action="remove", notebook_id="...", tags="ai")
tag(action="list")  # List all tagged notebooks
tag(action="select", query="ai research")  # Find notebooks by tag match

Example Workflows

Research → Podcast

1. research_start(query="AI trends 2026", mode="deep")
2. research_status(notebook_id, max_wait=300)  # wait for completion
3. research_import(notebook_id, task_id, cited_only=True, timeout=600)  # optional cited subset
4. studio_create(notebook_id, artifact_type="audio", confirm=True)
5. studio_status(notebook_id)  # poll until complete
6. download_artifact(notebook_id, artifact_type="audio", output_path="podcast.mp3")

Add Sources with Wait

source_add(notebook_id, source_type="url", url="https://...", wait=True)
# Returns when source is fully processed and ready for queries

Generate Study Materials

studio_create(notebook_id, artifact_type="quiz", question_count=10, confirm=True)
studio_create(notebook_id, artifact_type="flashcards", difficulty="hard", confirm=True)
studio_create(notebook_id, artifact_type="report", report_format="Study Guide", confirm=True)

Tag, Batch & Cross-Notebook

# Tag notebooks for organization
tag(action="add", notebook_id="abc", tags="ai,research")
tag(action="add", notebook_id="def", tags="ai,product")

# Find relevant notebooks
tag(action="select", query="ai research") 

# Query across tagged notebooks
cross_notebook_query(query="What are the main conclusions?", tags="ai")

# Batch generate podcasts for all tagged notebooks
batch(action="studio", artifact_type="audio", tags="ai", confirm=True)

Pipeline Automation

# List available pipelines
pipeline(action="list")

# Run a full ingest-and-podcast workflow
pipeline(action="run", notebook_id="abc", pipeline_name="ingest-and-podcast", input_url="https://example.com")

Configuration

MCP Server Options

FlagDescriptionDefault
--transportProtocol (stdio, http, sse)stdio
--portPort for HTTP/SSE8000
--debugEnable verbose loggingfalse

Environment Variables

VariableDescription
NOTEBOOKLM_MCP_TRANSPORTTransport type
NOTEBOOKLM_MCP_PORTHTTP/SSE port
NOTEBOOKLM_MCP_DEBUGEnable debug logging
NOTEBOOKLM_HLInterface language and default artifact language (default: en)
NOTEBOOKLM_QUERY_TIMEOUTQuery timeout (seconds)
NOTEBOOKLM_BASE_URLOverride base URL for Enterprise/Workspace (default: https://notebooklm.google.com)

Context Window Tips

This MCP has 35 tools which consume context. Best practices:

  • Disable when not using: In Claude Code, use @notebooklm-mcp to toggle
  • Use unified tools: source_add, studio_create, download_artifact handle multiple operations each
  • Poll wisely: Use studio_status sparingly - artifacts take 1-5 minutes

IDE Configuration

The easiest way to configure any tool is with nlm setup:

nlm setup add claude-code       # Claude Code
nlm setup add gemini            # Gemini CLI
nlm setup add github-copilot    # GitHub Copilot
nlm setup add cursor            # Cursor
nlm setup add windsurf          # Windsurf
nlm setup add json              # Any other tool (interactive JSON generator)
Manual configuration

Claude Code

claude mcp add --scope user notebooklm-mcp notebooklm-mcp

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "notebooklm-mcp": {
      "command": "/path/to/notebooklm-mcp"
    }
  }
}

GitHub Copilot / VS Code

Add to .vscode/mcp.json:

{
  "servers": {
    "notebooklm-mcp": {
      "command": "notebooklm-mcp",
      "args": []
    }
  }
}

Gemini CLI

gemini mcp add --scope user notebooklm-mcp notebooklm-mcp

เซิร์ฟเวอร์ที่เกี่ยวข้อง

NotebookLM Web Importer

นำเข้าหน้าเว็บและวิดีโอ YouTube ไปยัง NotebookLM ด้วยคลิกเดียว ผู้ใช้กว่า 200,000 คนไว้วางใจ

ติดตั้งส่วนขยาย Chrome