Let your CLI agents (Claude, Cursor, Codex...) chat directly with NotebookLM for zero-hallucination answers based on your own notebooks
Installation β’ Quick Start β’ Why NotebookLM β’ Examples β’ Claude Code Skill β’ Documentation
When you tell Claude Code or Cursor to "search through my local documentation", here's what happens:
- Massive token consumption: Searching through documentation means reading multiple files repeatedly
- Inaccurate retrieval: Searches for keywords, misses context and connections between docs
- Hallucinations: When it can't find something, it invents plausible-sounding APIs
- Expensive & slow: Each question requires re-reading multiple files
Let your local agents chat directly with NotebookLM β Google's zero-hallucination knowledge base powered by Gemini 2.5 that provides intelligent, synthesized answers from your docs.
Your Task β Local Agent asks NotebookLM β Gemini synthesizes answer β Agent writes correct code
The real advantage: No more manual copy-paste between NotebookLM and your editor. Your agent asks NotebookLM directly and gets answers straight back in the CLI. It builds deep understanding through automatic follow-ups β Claude asks multiple questions in sequence, each building on the last, getting specific implementation details, edge cases, and best practices. You can save NotebookLM links to your local library with tags and descriptions, and Claude automatically selects the relevant notebook based on your current task.
| Approach | Token Cost | Setup Time | Hallucinations | Answer Quality |
|---|---|---|---|---|
| Feed docs to Claude | π΄ Very high (multiple file reads) | Instant | Yes - fills gaps | Variable retrieval |
| Web search | π‘ Medium | Instant | High - unreliable sources | Hit or miss |
| Local RAG | π‘ Medium-High | Hours (embeddings, chunking) | Medium - retrieval gaps | Depends on setup |
| NotebookLM MCP | π’ Minimal | 5 minutes | Zero - refuses if unknown | Expert synthesis |
- Pre-processed by Gemini: Upload docs once, get instant expert knowledge
- Natural language Q&A: Not just retrieval β actual understanding and synthesis
- Multi-source correlation: Connects information across 50+ documents
- Citation-backed: Every answer includes source references
- No infrastructure: No vector DBs, embeddings, or chunking strategies needed
claude mcp add notebooklm npx notebooklm-mcp@latestcodex mcp add notebooklm -- npx notebooklm-mcp@latestGemini
gemini mcp add notebooklm npx notebooklm-mcp@latestCursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"notebooklm": {
"command": "npx",
"args": ["-y", "notebooklm-mcp@latest"]
}
}
}amp
amp mcp add notebooklm -- npx notebooklm-mcp@latestVS Code
code --add-mcp '{"name":"notebooklm","command":"npx","args":["notebooklm-mcp@latest"]}'Other MCP clients
Generic MCP config:
{
"mcpServers": {
"notebooklm": {
"command": "npx",
"args": ["notebooklm-mcp@latest"]
}
}
}Prefer Claude Code Skills over MCP? This server is now also available as a native Claude Code Skill with a simpler setup:
NotebookLM Claude Code Skill - Clone to ~/.claude/skills and start using immediately
Key differences:
- MCP Server (this repo): Persistent sessions, works with Claude Code, Codex, Cursor, and other MCP clients
- Claude Code Skill: Simpler setup, Python-based, stateless queries, works only with local Claude Code
Both use the same browser automation technology and provide zero-hallucination answers from your NotebookLM notebooks.
1. Install the MCP server (see Installation above)
Say in your chat (Claude/Codex):
"Log me in to NotebookLM"
A Chrome window opens β log in with Google
Go to notebooklm.google.com β Create notebook β Upload your docs:
- π PDFs, Google Docs, markdown files
- π Websites, GitHub repos
- π₯ YouTube videos
- π Multiple sources per notebook
Share: βοΈ Share β Anyone with link β Copy
"I'm building with [library]. Here's my NotebookLM: [link]"
That's it. Claude now asks NotebookLM whatever it needs, building expertise before writing code.
Challenge: n8n's API is new β Claude hallucinates node names and functions.
Solution:
- Downloaded complete n8n documentation β merged into manageable chunks
- Uploaded to NotebookLM
- Told Claude: "Build me a Gmail spam filter workflow. Use this NotebookLM: [link]"
Watch the AI-to-AI conversation:
Claude β "How does Gmail integration work in n8n?"
NotebookLM β "Use Gmail Trigger with polling, or Gmail node with Get Many..."
Claude β "How to decode base64 email body?"
NotebookLM β "Body is base64url encoded in payload.parts, use Function node..."
Claude β "How to parse OpenAI response as JSON?"
NotebookLM β "Set responseFormat to json, use {{ $json.spam }} in IF node..."
Claude β "What about error handling if the API fails?"
NotebookLM β "Use Error Trigger node with Continue On Fail enabled..."
Claude β β
"Here's your complete workflow JSON..."
Result: Perfect workflow on first try. No debugging hallucinated APIs.
NotebookLM refuses to answer if information isn't in your docs. No invented APIs.
Claude asks follow-up questions automatically, building complete understanding before coding.
Save NotebookLM links with tags and descriptions. Claude auto-selects the right notebook for your task.
"Add [link] to library tagged 'frontend, react, components'"
- Claude automatically asks follow-up questions to build complete understanding
- Each answer triggers deeper questions until Claude has all the details
- Example: For n8n workflow, Claude asked multiple sequential questions about Gmail integration, error handling, and data transformation
Set up once, use everywhere. Claude Code, Codex, Cursor β all share the same library.
Fresh start anytime. Scans entire system for NotebookLM data with categorized preview.
Reduce token usage by loading only the tools you need. Each tool consumes context tokens β fewer tools = faster responses and lower costs.
| Profile | Tools | Use Case |
|---|---|---|
| minimal | 5 | Query-only: ask_question, get_health, list_notebooks, select_notebook, get_notebook |
| standard | 10 | + Library management: setup_auth, list_sessions, add_notebook, update_notebook, search_notebooks |
| full | 16 | All tools including cleanup_data, re_auth, remove_notebook, reset_session, close_session, get_library_stats |
# Check current settings
npx notebooklm-mcp config get
# Set a profile
npx notebooklm-mcp config set profile minimal
npx notebooklm-mcp config set profile standard
npx notebooklm-mcp config set profile full
# Disable specific tools (comma-separated)
npx notebooklm-mcp config set disabled-tools "cleanup_data,re_auth"
# Reset to defaults
npx notebooklm-mcp config reset# Set profile
export NOTEBOOKLM_PROFILE=minimal
# Disable specific tools
export NOTEBOOKLM_DISABLED_TOOLS="cleanup_data,re_auth,remove_notebook"Settings are saved to ~/.config/notebooklm-mcp/settings.json and persist across sessions. Environment variables override file settings.
graph LR
A[Your Task] --> B[Claude/Codex]
B --> C[MCP Server]
C --> D[Chrome Automation]
D --> E[NotebookLM]
E --> F[Gemini 2.5]
F --> G[Your Docs]
G --> F
F --> E
E --> D
D --> C
C --> B
B --> H[Accurate Code]
| Intent | Say | Result |
|---|---|---|
| Authenticate | "Open NotebookLM auth setup" or "Log me in to NotebookLM" | Chrome opens for login |
| Add notebook | "Add [link] to library" | Saves notebook with metadata |
| List notebooks | "Show our notebooks" | Lists all saved notebooks |
| Research first | "Research this in NotebookLM before coding" | Multi-question session |
| Select notebook | "Use the React notebook" | Sets active notebook |
| Update notebook | "Update notebook tags" | Modify metadata |
| Remove notebook | "Remove [notebook] from library" | Deletes from library |
| View browser | "Show me the browser" | Watch live NotebookLM chat |
| Fix auth | "Repair NotebookLM authentication" | Clears and re-authenticates |
| Switch account | "Re-authenticate with different Google account" | Changes account |
| Clean restart | "Run NotebookLM cleanup" | Removes all data for fresh start |
| Keep library | "Cleanup but keep my library" | Preserves notebooks |
| Delete all data | "Delete all NotebookLM data" | Complete removal |
- You: Download docs β Claude: "search through these files"
- Problem: Claude reads thousands of files β massive token usage, often misses connections
- NotebookLM: Pre-indexed by Gemini, semantic understanding across all docs
- You: "Research X online"
- Problem: Outdated info, hallucinated examples, unreliable sources
- NotebookLM: Only your trusted docs, always current, with citations
- You: Set up embeddings, vector DB, chunking strategy, retrieval pipeline
- Problem: Hours of setup, tuning retrieval, still gets "creative" with gaps
- NotebookLM: Upload docs β done. Google handles everything.
Is it really zero hallucinations? Yes. NotebookLM is specifically designed to only answer from uploaded sources. If it doesn't know, it says so.
What about rate limits? Free tier has daily query limits per Google account. Quick account switching supported for continued research.
How secure is this? Chrome runs locally. Your credentials never leave your machine. Use a dedicated Google account if concerned.
Can I see what's happening? Yes! Say "Show me the browser" to watch the live NotebookLM conversation.
What makes this better than Claude's built-in knowledge? Your docs are always current. No training cutoff. No hallucinations. Perfect for new libraries, internal APIs, or fast-moving projects.
- π Usage Guide β Patterns, workflows, tips
- π οΈ Tool Reference β Complete MCP API
- π§ Configuration β Environment variables
- π Troubleshooting β Common issues
Without NotebookLM MCP: Write code β Find it's wrong β Debug hallucinated APIs β Repeat
With NotebookLM MCP: Claude researches first β Writes correct code β Ship faster
Stop debugging hallucinations. Start shipping accurate code.
# Get started in 30 seconds
claude mcp add notebooklm npx notebooklm-mcp@latestThis tool automates browser interactions with NotebookLM to make your workflow more efficient. However, a few friendly reminders:
About browser automation: While I've built in humanization features (realistic typing speeds, natural delays, mouse movements) to make the automation behave more naturally, I can't guarantee Google won't detect or flag automated usage. I recommend using a dedicated Google account for automation rather than your primary accountβthink of it like web scraping: probably fine, but better safe than sorry!
About CLI tools and AI agents: CLI tools like Claude Code, Codex, and similar AI-powered assistants are incredibly powerful, but they can make mistakes. Please use them with care and awareness:
- Always review changes before committing or deploying
- Test in safe environments first
- Keep backups of important work
- Remember: AI agents are assistants, not infallible oracles
I built this tool for myself because I was tired of the copy-paste dance between NotebookLM and my editor. I'm sharing it in the hope it helps others too, but I can't take responsibility for any issues, data loss, or account problems that might occur. Use at your own discretion and judgment.
That said, if you run into problems or have questions, feel free to open an issue on GitHub. I'm happy to help troubleshoot!
Found a bug? Have a feature idea? Open an issue or submit a PR!
MIT β Use freely in your projects.
Built with frustration about hallucinated APIs, powered by Google's NotebookLM
β Star on GitHub if this saves you debugging time!