npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

notebook-mcp-server

v1.0.1

Published

Professional MCP server to connect AI agents with Google NotebookLM

Readme

The Solution

The NotebookLM MCP Server brings the power of Google's NotebookLM directly into your AI-augmented workflow. Built natively in TypeScript using the Model Context Protocol, it allows agents to read, search, and manage your notebooks as if they were local files.


🚀 Installation

1. Global Installation (Recommended)

You can install the server directly from NPM:

npm install -g notebook-mcp-server

2. Direct usage with NPX (Zero-Config)

If you don't want to install it globally, you can run it directly:

npx notebook-mcp-server auth   # To log in
npx notebook-mcp-server start  # To run the server

🔑 Authentication

Before using the server, you must link it to your Google Account. This version uses a secure, persistent browser session:

  1. Run the authentication command:
    notebook-mcp-server auth
  2. A browser window will open. Log in with your Google account.
  3. Close the browser once you see your notebooks. Your session is now securely saved locally.

⚡ Quick Start

🤖 Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "notebooklm": {
      "command": "npx",
      "args": ["-y", "notebook-mcp-server", "start"]
    }
  }
}

💻 Visual Studio Code

Since VS Code does not support MCP natively yet, you must use an extension:

Option A: Using Cline (Recommended)

  1. Open Cline Settings in VS Code.
  2. Scroll to the MCP Servers section.
  3. Click Add New MCP Server.
  4. Use the following configuration:
    • Name: notebooklm
    • Command: npx -y notebook-mcp-server start

Option B: Using MCP Client

  1. Install the extension from the Marketplace.
  2. Open your VS Code settings.json.
  3. Add the server under mcp.servers:
    "mcp.servers": {
      "notebooklm": {
        "command": "npx",
        "args": ["-y", "notebook-mcp-server", "start"]
      }
    }

🌌 Antigravity

  1. Open your mcp.json configuration file.
  2. Add the following entry to the servers object:
    "notebooklm": {
      "command": "npx",
      "args": ["-y", "notebook-mcp-server", "start"]
    }

💎 Gemini CLI

Run the following command in your terminal to add the notebooklm skill:

gemini mcp add notebooklm -- npx -y notebook-mcp-server start

🤖 Claude Code Skill

Add it instantly to Claude Code:

claude skill add notebooklm -- "npx -y notebook-mcp-server start"

📖 Documentation

| Tool | Description | | :---------------- | :------------------------------------------------------ | | list_notebooks | Lists all notebooks available in your account. | | create_notebook | Creates a new notebook with an optional title. | | get_notebook | Retrieves the full content and summaries of a notebook. | | query_notebook | Asks a grounded question to a specific notebook. |


🛠️ Development

To contribute or build from source:

git clone https://github.com/moodRobotics/notebook-mcp-server.git
npm install
npm run build

📄 License

MIT License. Developed with ❤️ by moodRobotics.