.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-world/notebooklm-skill
home/mcp-servers/claude-world/notebooklm-skill
claude-world avatar

notebooklm-skill

byclaude-world· 3 MCP servers

Installs

723

Stars

387

Forks

52

Category

Content & Copywriting

View on GitHub

TL;DR

> Source-grounded NotebookLM automation for terminals and AI agents.

How to install notebooklm-skill?

claude-world/notebooklm-skill
$git clone https://github.com/claude-world/notebooklm-skill

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install notebooklm-skill by running `git clone https://github.com/claude-world/notebooklm-skill`, then use it for the current task and follow its documentation at https://github.com/claude-world/notebooklm-skill.

Files · 1

View on GitHub
README.md
1# notebooklm-skill
2 
3> Source-grounded NotebookLM automation for terminals and AI agents.
4 
5[![CI](https://github.com/claude-world/notebooklm-skill/actions/workflows/ci.yml/badge.svg)](https://github.com/claude-world/notebooklm-skill/actions/workflows/ci.yml)
6[![PyPI](https://img.shields.io/pypi/v/notebooklm-skill)](https://pypi.org/project/notebooklm-skill/)
7[![Python](https://img.shields.io/pypi/pyversions/notebooklm-skill)](https://pypi.org/project/notebooklm-skill/)
8[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
9 
10[繁體中文](README.zh-TW.md)
11 
12`notebooklm-skill` gives humans and MCP clients one consistent interface for Google
13NotebookLM. It creates notebooks from URLs, raw text, and local files; asks grounded
14questions with citation metadata; completes fast or deep web research; and generates
15or downloads NotebookLM artifacts.
16 
17The project is built around `notebooklm-py` 0.7.x and includes:
18 
19- a JSON-first core CLI;
20- five end-to-end research pipelines;
21- a 13-tool FastMCP server;
22- profile-aware authentication and Skill installers;
23- one shared compatibility layer, so CLI, pipelines, and MCP use the same behavior.
24 
25> This is an unofficial integration with NotebookLM's web API. Google can change the
26> service, availability, quotas, or artifact behavior without notice.
27 
28## Quick start
29 
30### Isolated source install
31 
32The installer creates a dedicated virtual environment, installs Chromium, links five
33commands into `~/.local/bin`, and installs the Claude Code Skill using the standard
34directory layout.
35 
36```bash
37git clone https://github.com/claude-world/notebooklm-skill.git
38cd notebooklm-skill
39./install.sh
40 
41notebooklm-auth setup
42notebooklm-skill list
43```
44 
45Ensure `~/.local/bin` is on `PATH`.
46 
47### PyPI or uvx
48 
49```bash
50# Persistent virtual environment
51python3 -m venv .venv
52source .venv/bin/activate
53python -m pip install notebooklm-skill
54python -m playwright install chromium
55notebooklm-auth setup
56 
57# Or run without a persistent install
58uvx --from notebooklm-skill notebooklm-auth setup
59uvx --from notebooklm-skill notebooklm-skill list
60```
61 
62Direct upstream login is also available:
63 
64```bash
65uvx --from notebooklm-py notebooklm login
66```
67 
68Sessions are profile-aware. Select one with `--profile NAME` before a CLI
69subcommand, or set `NOTEBOOKLM_PROFILE`.
70 
71To use the locally installed Google Chrome instead of bundled Chromium:
72 
73```bash
74notebooklm-auth setup --browser chrome --fresh
75```
76 
77## Core CLI
78 
79All successful commands print structured JSON to stdout. Diagnostics go to stderr;
80authentication errors return exit code 4 and argument errors return exit code 2.
81 
82```bash
83# Mixed-source ingestion with truthful per-source outcomes
84notebooklm-skill create \
85 --title "Research" \
86 --sources https://example.com/article \
87 --files ./paper.pdf \
88 --text-sources "Interview notes" \
89 --strict
90 
91notebooklm-skill ask \
92 --notebook "Research" \
93 --query "Which conclusions have the strongest evidence?"
94 
95notebooklm-skill research \
96 --notebook "Research" \
97 --query "Recent independent evaluations" \
98 --mode deep --max-sources 10
99 
100notebooklm-skill generate \
101 --notebook "Research" \
102 --type slides --lang zh-TW \
103 --output ./output/deck.pptx --output-format pptx
104 
105notebooklm-skill list-artifacts --notebook "Research" --type slides
106```
107 
108Commands resolve an exact ID, unique title, or unique title substring. Use IDs for
109repeatable automation. Deletes require `--yes`; downloads refuse existing files or
110symlinks unless an explicit safe overwrite is requested with `--force`.
111 
112### Artifact types
113 
114| Type | Default download | Notes |
115|---|---:|---|
116| `audio` | M4A | deep-dive, brief, critique, or debate |
117| `video` | MP4 | explainer/brief and multiple visual styles |
118| `cinematic` | MP4 | cinematic video workflow |
119| `slides` | PDF | PDF or PPTX |
120| `report` | Markdown | briefing, study guide, blog, or custom |
121| `study-guide` | Markdown | report shortcut |
122| `quiz` | JSON | JSON, Markdown, or HTML |
123| `flashcards` | JSON | JSON, Mark

Preview

claude-world/notebooklm-skillclaude-world/notebooklm-skill

# notebooklm-skill

> Source-grounded NotebookLM automation for terminals and AI agents.

[![CI](https://github.com/claude-world/notebooklm-skill/actions/workflows/ci.yml/badge.svg)](https://github.com/claude-world/notebooklm-skill/actions/workflows/

[![PyPI](https://img.shields.io/pypi/v/notebooklm-skill)](https://pypi.org/project/notebooklm-skill/)

Repoclaude-world/notebooklm-skill
TypeMCP Servers
CategoryContent & Copywriting
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPai-researchclaude-code

Related

6 picks
Type
  1. thysrael avatarhorizonAI-driven information aggregation system for tracking academic and social trendsMCP ServersJul 202628k8.5k
  2. mfydev avatarghost-mcpMCP server for using the Ghost APIMCP ServersApr 202620k217
  3. kirbah avatarmcp-youtubeYouTube MCP server for token-optimized, structured data using the YouTube Data API v3.MCP ServersJul 20263.3k25
  4. docdyhr avatarmcp-wordpressComprehensive Model Context Protocol server for WordPress management with composition-based architecture, 71 tools, SEO toolkit, performance monitoring, intelligent caching, and production-ready authenticationMCP ServersJul 20262.7k102
  5. deepl avatardeepl-mcp-serverMCP server for DeepL translation APIMCP ServersMay 2026953110
  6. caol64 avatarwenyan-mcpMCP server for Wenyan, a Markdown formatting tool that allows AI assistants to apply elegant built-in themes and publish articles directly to 微信公众号.MCP ServersApr 20264471.3k