@roomi-fields/notebooklm-mcp 1.1.2 → 1.1.4

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
@@ -7,7 +7,7 @@
7
7
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-blue.svg)](https://www.typescriptlang.org/)
8
8
  [![MCP](https://img.shields.io/badge/MCP-2025-green.svg)](https://modelcontextprotocol.io/)
9
9
  [![npm](https://img.shields.io/npm/v/@roomi-fields/notebooklm-mcp.svg)](https://www.npmjs.com/package/@roomi-fields/notebooklm-mcp)
10
- [![GitHub](https://img.shields.io/github/stars/roomi-fields/notebooklm-mcp-http?style=social)](https://github.com/roomi-fields/notebooklm-mcp-http)
10
+ [![GitHub](https://img.shields.io/github/stars/roomi-fields/notebooklm-mcp?style=social)](https://github.com/roomi-fields/notebooklm-mcp)
11
11
 
12
12
  [MCP Installation](#mcp-installation) • [HTTP REST API](#http-rest-api) • [Why NotebookLM](#why-notebooklm-not-local-rag) • [Examples](#real-world-example) • [Documentation](./deployment/docs/)
13
13
 
@@ -21,13 +21,31 @@
21
21
 
22
22
  Use NotebookLM from **any tool** via HTTP REST API:
23
23
 
24
+ **Option A: Install from npm**
24
25
  ```bash
25
- # Install and start HTTP server
26
+ # Install globally
27
+ npm install -g @roomi-fields/notebooklm-mcp
28
+
29
+ # For MCP stdio mode (Claude Code, Cursor)
30
+ notebooklm-mcp
31
+
32
+ # For HTTP server mode
33
+ # Note: Currently requires cloning the repo for HTTP mode
34
+ # See Option B below
35
+ ```
36
+
37
+ **Option B: Install from source (Required for HTTP mode)**
38
+ ```bash
39
+ # Clone and install
40
+ git clone https://github.com/roomi-fields/notebooklm-mcp.git
41
+ cd notebooklm-mcp
26
42
  npm install
27
43
  npm run build
28
44
  npm run start:http
45
+ ```
29
46
 
30
- # Query NotebookLM via REST
47
+ **Query the API:**
48
+ ```bash
31
49
  curl -X POST http://localhost:3000/ask \
32
50
  -H "Content-Type: application/json" \
33
51
  -d '{"question": "Explain X", "notebook_id": "my-notebook"}'
@@ -521,13 +539,13 @@ Future features planned for upcoming releases:
521
539
  **Status**: Planned for v1.2.0 or v1.3.0
522
540
 
523
541
  ### 💡 Have an idea?
524
- [Open a discussion](https://github.com/roomi-fields/notebooklm-mcp-http/discussions) to suggest new features!
542
+ [Open a discussion](https://github.com/roomi-fields/notebooklm-mcp/discussions) to suggest new features!
525
543
 
526
544
  ---
527
545
 
528
546
  ## Contributing
529
547
 
530
- Found a bug? Have a feature idea? [Open an issue](https://github.com/roomi-fields/notebooklm-mcp-http/issues) or submit a PR!
548
+ Found a bug? Have a feature idea? [Open an issue](https://github.com/roomi-fields/notebooklm-mcp/issues) or submit a PR!
531
549
 
532
550
  See [CONTRIBUTING.md](./CONTRIBUTING.md) for contribution guidelines.
533
551
 
@@ -543,6 +561,6 @@ See [LICENSE](./LICENSE) for details.
543
561
 
544
562
  Built with frustration about hallucinated APIs, powered by Google's NotebookLM
545
563
 
546
- ⭐ [Star on GitHub](https://github.com/roomi-fields/notebooklm-mcp-http) if this saves you debugging time!
564
+ ⭐ [Star on GitHub](https://github.com/roomi-fields/notebooklm-mcp) if this saves you debugging time!
547
565
 
548
566
  </div>
@@ -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.4`);
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.4",
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.4`);
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.4 ║");
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.2",
3
+ "version": "1.1.4",
4
4
  "description": "MCP server for NotebookLM API with HTTP REST API - Zero hallucinations from your notebooks",
5
5
  "type": "module",
6
6
  "bin": {
@@ -35,11 +35,11 @@
35
35
  "license": "MIT",
36
36
  "repository": {
37
37
  "type": "git",
38
- "url": "git+https://github.com/roomi-fields/notebooklm-mcp-http.git"
38
+ "url": "git+https://github.com/roomi-fields/notebooklm-mcp.git"
39
39
  },
40
- "homepage": "https://github.com/roomi-fields/notebooklm-mcp-http#readme",
40
+ "homepage": "https://github.com/roomi-fields/notebooklm-mcp#readme",
41
41
  "bugs": {
42
- "url": "https://github.com/roomi-fields/notebooklm-mcp-http/issues"
42
+ "url": "https://github.com/roomi-fields/notebooklm-mcp/issues"
43
43
  },
44
44
  "files": [
45
45
  "dist",