@roomi-fields/notebooklm-mcp 1.1.3 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -325,18 +325,39 @@ Share: **⚙️ Share → Anyone with link → Copy**
325
325
 
326
326
  ---
327
327
 
328
- ## Alternative: Claude Code Skill
328
+ ## Related Project: Claude Code Skill (by original author)
329
329
 
330
- **Prefer Claude Code Skills over MCP?** This server is now also available as a native Claude Code Skill with a simpler setup:
330
+ The original author [PleasePrompto](https://github.com/PleasePrompto) also created a **Python-based Claude Code Skill** as an alternative approach:
331
331
 
332
- **NotebookLM Claude Code Skill** - Available separately for advanced Claude Code workflows
332
+ 🔗 **[NotebookLM Claude Code Skill](https://github.com/PleasePrompto/notebooklm-skill)** - Python skill for Claude Code
333
333
 
334
- **Key differences:**
335
- - **MCP Server** (this repo): Persistent sessions, works with Claude Code, Codex, Cursor, and other MCP clients
336
- - **HTTP REST API** (this repo): Works with n8n, Zapier, Make.com, any HTTP client
337
- - **Claude Code Skill**: Simpler setup, Python-based, stateless queries, works only with local Claude Code
334
+ ### When to use which approach?
338
335
 
339
- All use the same browser automation technology and provide zero-hallucination answers from your NotebookLM notebooks.
336
+ | Feature | This Project (MCP + HTTP) | Original Skill (Python) |
337
+ |---------|---------------------------|-------------------------|
338
+ | **Protocol** | MCP (Model Context Protocol) | Claude Skills |
339
+ | **Installation** | `claude mcp add notebooklm npx @roomi-fields/notebooklm-mcp` | Clone to `~/.claude/skills/` |
340
+ | **Sessions** | ✅ Persistent browser sessions | Fresh browser per query |
341
+ | **Compatibility** | ✅ Claude Code, Cursor, Codex, any MCP client | Claude Code only |
342
+ | **HTTP API** | ✅ Works with n8n, Zapier, Make.com | ❌ Not available |
343
+ | **Language** | TypeScript | Python |
344
+ | **Use case** | Long conversations, automation workflows | Quick one-off queries |
345
+
346
+ ### Which one should you choose?
347
+
348
+ - **Use this MCP project** if you want:
349
+ - Persistent sessions (faster repeated queries)
350
+ - Compatibility with multiple tools (Cursor, Codex, etc.)
351
+ - HTTP REST API for n8n/Zapier automation
352
+ - TypeScript-based development
353
+
354
+ - **Use the original Skill** if you prefer:
355
+ - Python-based workflow
356
+ - Simpler clone-and-use installation
357
+ - Stateless queries (no session management)
358
+ - Only using Claude Code locally
359
+
360
+ Both use the same Patchright browser automation technology and provide zero-hallucination answers from NotebookLM.
340
361
 
341
362
  ---
342
363
 
@@ -182,7 +182,7 @@ app.delete('/sessions/:id', async (req, res) => {
182
182
  const PORT = Number(process.env.HTTP_PORT) || 3000;
183
183
  const HOST = process.env.HTTP_HOST || '0.0.0.0';
184
184
  app.listen(PORT, HOST, () => {
185
- log.success(`🌐 NotebookLM MCP HTTP Server v1.1.2`);
185
+ log.success(`🌐 NotebookLM MCP HTTP Server v1.1.5`);
186
186
  log.success(` Listening on ${HOST}:${PORT}`);
187
187
  log.info('');
188
188
  log.info('📊 Quick Links:');
package/dist/index.js CHANGED
@@ -51,7 +51,7 @@ class NotebookLMMCPServer {
51
51
  // Initialize MCP Server
52
52
  this.server = new Server({
53
53
  name: "notebooklm-mcp",
54
- version: "1.1.2",
54
+ version: "1.1.5",
55
55
  }, {
56
56
  capabilities: {
57
57
  tools: {},
@@ -70,7 +70,7 @@ class NotebookLMMCPServer {
70
70
  this.setupHandlers();
71
71
  this.setupShutdownHandlers();
72
72
  log.info("🚀 NotebookLM MCP Server initialized");
73
- log.info(` Version: 1.1.2`);
73
+ log.info(` Version: 1.1.5`);
74
74
  log.info(` Node: ${process.version}`);
75
75
  log.info(` Platform: ${process.platform}`);
76
76
  }
@@ -476,7 +476,7 @@ async function main() {
476
476
  // Print banner
477
477
  console.error("╔══════════════════════════════════════════════════════════╗");
478
478
  console.error("║ ║");
479
- console.error("║ NotebookLM MCP Server v1.1.2 ║");
479
+ console.error("║ NotebookLM MCP Server v1.1.5 ║");
480
480
  console.error("║ ║");
481
481
  console.error("║ Chat with Gemini 2.5 through NotebookLM via MCP ║");
482
482
  console.error("║ ║");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roomi-fields/notebooklm-mcp",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "MCP server for NotebookLM API with HTTP REST API - Zero hallucinations from your notebooks",
5
5
  "type": "module",
6
6
  "bin": {