@roomi-fields/notebooklm-mcp 1.1.2 → 1.1.3

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.
Files changed (2) hide show
  1. package/README.md +24 -6
  2. package/package.json +4 -4
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>
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.3",
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",