library.discover
Automatically extracts notebook name, description, and tags from a NotebookLM URL for quick setup.
Instructions
🚀 AUTO-DISCOVERY — Automatically generate notebook metadata via NotebookLM (RECOMMENDED)
When to Use
User provides NotebookLM URL and wants quick/automatic setup
User prefers not to manually specify metadata
Default choice for adding notebooks
Workflow
User provides NotebookLM URL
Ask confirmation: "Add '[URL]' with auto-generated metadata?"
Call this tool → NotebookLM generates name, description, tags
Show generated metadata to user for review
Benefits
✅ 30 seconds vs 5 minutes manual entry
✅ Zero-friction notebook addition
✅ Consistent metadata quality
✅ Discovers topics user might not think of
Example
User: "Add this NotebookLM: https://notebooklm.google.com/notebook/abc123" You: "Add this notebook with auto-generated metadata?" User: "Yes" You: Call auto_discover_notebook(url="https://...") → Returns: {name: "n8n-workflow-guide", description: "...", tags: [...]}
Fallback
If auto-discovery fails (rare), use add_notebook tool for manual entry.
How to Get a NotebookLM Share Link
Visit https://notebooklm.google/ → Login (free: 100 notebooks, 50 sources each, 500k words, 50 daily queries)
Click "+ New" (top right) → Upload sources (docs, knowledge)
Click "Share" (top right) → Select "Anyone with the link"
Click "Copy link" (bottom left) → Give this link to Claude
(Upgraded: Google AI Pro/Ultra gives 5x higher limits)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The NotebookLM notebook URL |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| success | Yes | Whether the tool call succeeded. | |
| data | No | The tool payload on success. The exact shape depends on the tool. | |
| error | No | Human-readable error message, present only when success is false. |