Does NotebookLM have an MCP server?
NotebookLM does not maintain an official MCP server. Community-built servers exist.
- Access
- Local server
- Repository
- PleasePrompto/notebooklm-mcp
- Maintainer
- Please Prompto!
- License
- MIT
- Language
- TypeScript
- Stars
- 3.2k
- Last commit
- 3mo ago
- Category
- Knowledge & Memory
MCP server for NotebookLM - Let your AI agents (Claude Code, Codex) research documentation directly with grounded, citation-backed answers from Gemini. Persistent auth, library management, cross-client sharing. Zero hallucinations, just your knowledge base.
MCP server for NotebookLM - Let your AI agents (Claude Code, Codex) research documentation directly with grounded, citation-backed answers from Gemini. Persistent auth, library management, cross-client sharing. Zero hallucinations, just your knowledge base.
Runs on your machine over stdio, launched by your MCP client.
Add it from the terminal, then restart your session:
claude mcp add notebooklm -- npx -y <package-from-readme>Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable.
Add --scope user to make it available in every project.
Open Settings → Developer → Edit Config and add the server to claude_desktop_config.json:
{
"mcpServers": {
"notebooklm": {
"command": "npx",
"args": [
"-y",
"<package-from-readme>"
],
"env": {
"API_KEY": "…"
}
}
}
}Restart Claude Desktop after saving.
Add to .cursor/mcp.json in your project, or ~/.cursor/mcp.json for
every project:
{
"mcpServers": {
"notebooklm": {
"command": "npx",
"args": [
"-y",
"<package-from-readme>"
],
"env": {
"API_KEY": "…"
}
}
}
}A green dot in Settings → MCP means it connected.
Add to .vscode/mcp.json:
{
"servers": {
"notebooklm": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"<package-from-readme>"
]
}
}
}Then pick the server from the tools menu in Copilot's agent mode.
A community server is unaudited third-party code that will hold your NotebookLM API credentials and see whatever data they unlock. Independent research puts SSRF vulnerabilities in roughly a third of public MCP servers, and 41% ship with no authentication at all.
- Read the source before running it — especially any network calls it makes.
- Check who maintains it and whether commits are recent (this one: 3mo ago).
- Issue a scoped, revocable API key rather than an account-wide token.
- Prefer read-only credentials until you trust it with writes.
Does NotebookLM have an official MCP server?
No. NotebookLM does not maintain one. Third-party developers have built community servers, the most established being PleasePrompto/notebooklm-mcp, but they are not endorsed or supported by NotebookLM.
How do I connect NotebookLM to Claude?
Run the server locally and register it in Claude's MCP config. In Claude Code that's a single "claude mcp add" command; in Claude Desktop you add it to claude_desktop_config.json.
Is it safe to use a community NotebookLM MCP server?
Treat it like any dependency that gets your API keys. Community MCP servers are unaudited third-party code: independent research has found roughly a third of public MCP servers carry SSRF vulnerabilities and 41% ship with no authentication. Read the source, check the maintainer and commit recency, and scope the credentials you hand it.
How is this verdict verified?
No official NotebookLM MCP and no public NotebookLM API — Google's managed-MCP catalog doesn't include it. Top community (browser automation): PleasePrompto/notebooklm-mcp (~3.2k stars). COMMUNITY-ONLY confirmed. GitHub metadata is refreshed every six hours.
No official NotebookLM MCP and no public NotebookLM API — Google's managed-MCP catalog doesn't include it. Top community (browser automation): PleasePrompto/notebooklm-mcp (~3.2k stars). COMMUNITY-ONLY confirmed.
- github data refreshed 2026-08-11, then every 6 hours
- vendor docs verified on 2026-08-10
Work at NotebookLM? The moment you ship an official server this page flips to Official — send us the link.