/ Directory / Playground / NotebookLM MCP
● Community PleasePrompto 🔑 Needs your key

NotebookLM MCP

by PleasePrompto · PleasePrompto/notebooklm-mcp

Bridge Claude to Google's NotebookLM — query your source-grounded notebooks and get citations back.

NotebookLM MCP exposes a NotebookLM notebook as MCP tools: list sources, query with citations, generate or fetch audio overviews. Useful when you've curated a corpus in NotebookLM and want Claude to reason over it without re-ingesting.

Why use it

Key features

Live Demo

What it looks like in practice

ready

Install

Pick your client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "notebooklm-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "notebooklm-mcp"
      ],
      "env": {
        "GOOGLE_NOTEBOOK_TOKEN": "${GOOGLE_NOTEBOOK_TOKEN}"
      }
    }
  }
}

Open Claude Desktop → Settings → Developer → Edit Config. Restart after saving.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "notebooklm-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "notebooklm-mcp"
      ],
      "env": {
        "GOOGLE_NOTEBOOK_TOKEN": "${GOOGLE_NOTEBOOK_TOKEN}"
      }
    }
  }
}

Cursor uses the same mcpServers schema as Claude Desktop. Project config wins over global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "notebooklm-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "notebooklm-mcp"
      ],
      "env": {
        "GOOGLE_NOTEBOOK_TOKEN": "${GOOGLE_NOTEBOOK_TOKEN}"
      }
    }
  }
}

Click the MCP Servers icon in the Cline sidebar, then "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "notebooklm-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "notebooklm-mcp"
      ],
      "env": {
        "GOOGLE_NOTEBOOK_TOKEN": "${GOOGLE_NOTEBOOK_TOKEN}"
      }
    }
  }
}

Same shape as Claude Desktop. Restart Windsurf to pick up changes.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "notebooklm-mcp",
      "command": "npx",
      "args": [
        "-y",
        "notebooklm-mcp"
      ]
    }
  ]
}

Continue uses an array of server objects rather than a map.

~/.config/zed/settings.json
{
  "context_servers": {
    "notebooklm-mcp": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "notebooklm-mcp"
        ]
      }
    }
  }
}

Add to context_servers. Zed hot-reloads on save.

claude mcp add notebooklm-mcp -- npx -y notebooklm-mcp

One-liner. Verify with claude mcp list. Remove with claude mcp remove.

Use Cases

Real-world ways to use NotebookLM MCP

Research-grade Q&A against a curated corpus

👤 Developers ⏱ ~15 min intermediate

When to use: You've built a NotebookLM with your domain papers; you want Claude to cite from it.

Flow
  1. Pick notebook
    list_notebooks; choose the right one.✓ Copied
    → notebook_id
  2. Ask
    Query with question; tool returns answer + citations.✓ Copied
    → Cited answer
  3. Drill
    Open the cited source to validate.✓ Copied
    → Verified

Outcome: Claude answers come with NotebookLM-grade citations.

Combinations

Pair with other MCPs for X10 leverage

notebooklm-mcp + filesystem

Save cited extracts as your reading notes

Combine notebooklm-mcp with filesystem: Save cited extracts as your reading notes✓ Copied

Tools

What this MCP exposes

ToolInputsWhen to callCost
list_notebooks (see docs) List your notebooks 1 call
query (see docs) Ask a question; get cited answer 1 call
get_audio_overview (see docs) Fetch the audio overview 1 call

Cost & Limits

What this costs to run

API quota
NotebookLM quotas apply
Tokens per call
Answers mid-size; citations small
Monetary
NotebookLM is free for personal use
Tip
Cache notebook IDs locally — list_notebooks is slow

Security

Permissions, secrets, blast radius

Minimum scopes: notebooklm:read
Credential storage: Google auth token in env
Data egress: notebooklm.google.com
Never grant: share notebook tokens

Troubleshooting

Common errors and fixes

401

Token expired; re-auth via Google

Empty results

Notebook may have failed indexing; check in the NotebookLM UI

Alternatives

NotebookLM MCP vs others

AlternativeWhen to use it insteadTradeoff
context7Public library docsNot your private corpus

More

Resources

📖 Read the official README on GitHub

🐙 Browse open issues

🔍 Browse all 400+ MCP servers and Skills