notebooklm-mcp

notebooklm-mcp

MCP server for Google NotebookLM enabling notebook, source, and audio overview management with hybrid metadata storage.

Category
Visit Server

README

NotebookLM MCP Server

MCP server for NotebookLM with hybrid metadata enforcement (API-native fields + Google Docs custom properties + local JSON storage).

Features

  • Metadata Operations: Validate, get, set, and query custom metadata
  • Notebook Operations: List, get, create, delete, and share notebooks (via NotebookLM API)
  • Source Operations: Add, get, and remove sources (Google Docs, PDFs, URLs, etc.)
  • Audio Overviews: Generate and delete audio overviews
  • Hybrid Storage: Three-layer metadata storage (API fields, Google Docs, local JSON)
  • OAuth2 Authentication: Secure authentication with auto-refresh
  • Caching: 30-second TTL for optimal performance
  • TDD: 89+ tests with comprehensive coverage

Architecture

MCP Server
    ↓
Metadata Manager (Orchestrator)
    ↓ ↓ ↓
[NotebookLM API] [Google Docs API] [Local JSON Store]

Prerequisites

  • Node.js 18+
  • Google Cloud Project with:
    • NotebookLM Enterprise API enabled
    • Google Docs API enabled
    • Google Drive API enabled
  • OAuth2 credentials (client ID and secret)

Installation

# Clone or copy to your machine
cd /path/to/notebooklm-mcp

# Install dependencies
npm install

# Build
npm run build

Configuration

1. Set up OAuth2 Credentials

Set environment variables:

export GOOGLE_CLIENT_ID="your-client-id.apps.googleusercontent.com"
export GOOGLE_CLIENT_SECRET="your-client-secret"

Or create .env file:

GOOGLE_CLIENT_ID=your-client-id
GOOGLE_CLIENT_SECRET=your-client-secret

2. Authenticate (First Time)

Run the setup flow:

npm run setup  # TODO: Implement OAuth web flow in future

This will:

  1. Open your browser to Google OAuth consent screen
  2. Request permissions for NotebookLM, Google Docs, and Drive
  3. Save credentials to ~/.notebooklm-mcp/credentials.json

Manual Testing

Before using the MCP server in production, we recommend following the manual testing guide to verify everything works correctly.

👉 Complete Manual Testing Guide

The guide walks you through:

  • Phase 1: No-auth metadata validation (5-10 min)
  • Phase 2: OAuth setup and Claude Code integration (10-15 min)
  • Phase 3: End-to-end workflow testing (15-20 min)

Quick test (after installation):

# Build the server
npm run build

# Run automated tests
npm test

# Expected: 89 tests passing (10 test suites)

For detailed testing including OAuth and Claude Code integration, see the Manual Testing Guide.

Usage

Start MCP Server

npm start

The server runs on stdio and can be used with Claude Code.

Configure in Claude Code

Add to your Claude Code MCP configuration:

Desktop: ~/.claude/desktop-config.json

{
  "mcpServers": {
    "notebooklm": {
      "command": "/path/to/notebooklm-mcp/bin/notebooklm-mcp",
      "env": {
        "GOOGLE_CLIENT_ID": "your-client-id",
        "GOOGLE_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Available MCP Tools

Metadata Operations

  • notebooklm_validate_metadata - Validate metadata against schema
  • notebooklm_get_metadata - Get metadata for notebook/source
  • notebooklm_set_metadata - Set metadata
  • notebooklm_query_metadata - Query by metadata filter

Notebook Operations

  • notebooklm_list_notebooks - List recently viewed notebooks
  • notebooklm_get_notebook - Get notebook details with sources
  • notebooklm_create_notebook - Create new notebook
  • notebooklm_delete_notebook - Delete notebook(s)
  • notebooklm_share_notebook - Share notebook with user

Source Operations

  • notebooklm_add_sources - Add sources to notebook
  • notebooklm_get_source - Get source details
  • notebooklm_remove_sources - Remove sources

Audio Overview Operations

  • notebooklm_generate_audio - Generate audio overview
  • notebooklm_delete_audio - Delete audio overview

Metadata Schema (v1.0)

Required Fields

{
  type: "notebook-source"  // Fixed value
  project: string          // Project name
  status: "active" | "archived" | "reference" | "in-progress"
}

Optional Fields

{
  area?: string           // PARA area (e.g., "vocation/spreetail")
  tags?: string[]         // Custom tags
  created?: string        // ISO date (YYYY-MM-DD)
  modified?: string       // ISO date (YYYY-MM-DD)
  customFields?: object   // Extensible custom metadata
}

Example

{
  "type": "notebook-source",
  "project": "palomino-nas",
  "status": "active",
  "area": "vocation/spreetail",
  "tags": ["infrastructure", "backup"],
  "created": "2026-02-17",
  "modified": "2026-02-17",
  "customFields": {
    "priority": "high",
    "owner": "brockbutler"
  }
}

Development

Run Tests

make test
# or
npm test

Watch Mode (TDD)

make test-watch
# or
npm run test:watch

Coverage Report

make test-coverage

Build

make build
# or
npm run build

Project Structure

/Users/brockstudio/Projects/notebooklm-mcp/
├── src/
│   ├── index.ts                    # Entry point
│   ├── server.ts                   # MCP server with 14 tools
│   ├── config.ts                   # Configuration
│   ├── validators/
│   │   └── schema.ts               # Metadata validation
│   ├── storage/
│   │   └── metadata-store.ts       # Local JSON store
│   ├── cache/
│   │   └── manager.ts              # TTL cache
│   ├── auth/
│   │   └── oauth.ts                # OAuth2 manager
│   ├── clients/
│   │   ├── notebooklm.ts          # NotebookLM API client
│   │   └── google-docs.ts         # Google Docs API client
│   └── managers/
│       └── metadata.ts             # Metadata orchestrator
├── tests/
│   ├── unit/                       # Unit tests
│   ├── integration/                # Integration tests
│   └── setup.ts                    # Test setup
├── bin/
│   └── notebooklm-mcp              # Executable wrapper
├── dist/                           # Compiled JavaScript
├── package.json
├── tsconfig.json
├── jest.config.js
├── Makefile
└── README.md

Runtime Files

~/.notebooklm-mcp/
├── credentials.json                # OAuth tokens (chmod 600)
├── metadata.json                   # Local metadata store
└── metadata.json.backup            # Backup (on corruption)

Implementation Status

✅ Completed (Tasks 1-14)

  • Project scaffold and configuration
  • Metadata validator with schema enforcement
  • Local JSON store with atomic writes
  • Cache manager with TTL
  • OAuth2 credentials storage and token refresh
  • Google Docs API client (stub)
  • NotebookLM API client (stub)
  • Metadata manager orchestration layer
  • MCP server with 14 tools
  • Comprehensive testing (89+ tests)
  • Integration and end-to-end tests

🔲 Future Enhancements (Post-MVP)

  • OAuth2 web flow setup wizard
  • Real Google Docs API integration
  • Real NotebookLM API integration
  • Advanced querying (full-text search)
  • Multi-device metadata sync
  • Cloud backup for metadata

Troubleshooting

"No credentials found"

Run the setup flow to authenticate with Google:

npm run setup  # TODO: Implement OAuth web flow

"Token refresh failed"

Your refresh token may have expired. Re-run setup:

rm ~/.notebooklm-mcp/credentials.json
npm run setup

"NotebookLM API not yet implemented"

The NotebookLM API operations are currently stubs. They will be implemented in a future phase with real API integration.

Contributing

This project follows TDD principles. All new features require tests.

License

MIT

Design Documents

  • Architecture: /Users/brockstudio/Projects/palomino-nas/docs/plans/2026-02-16-notebooklm-api-redesign.md
  • Implementation Plan: /Users/brockstudio/Projects/palomino-nas/docs/plans/2026-02-16-notebooklm-api-implementation.md

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured