@roomi-fields/notebooklm-mcp 1.2.0 → 1.2.1
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 +1 -1
- package/dist/http-wrapper.js +1 -1
- package/dist/index.js +3 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -575,7 +575,7 @@ Future features planned for upcoming releases:
|
|
|
575
575
|
|
|
576
576
|
**Planned options:**
|
|
577
577
|
- **PM2 integration** (Recommended): Cross-platform process manager with auto-restart, monitoring, and logs
|
|
578
|
-
- Simple setup: `
|
|
578
|
+
- Simple setup: `npm run daemon:start` (uses PM2 with optimized config)
|
|
579
579
|
- Automatic startup on system boot
|
|
580
580
|
- Built-in log rotation and monitoring
|
|
581
581
|
- **Windows Service**: Native Windows service installation via `nssm` or `node-windows`
|
package/dist/http-wrapper.js
CHANGED
|
@@ -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.2.
|
|
185
|
+
log.success(`🌐 NotebookLM MCP HTTP Server v1.2.1`);
|
|
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.2.
|
|
54
|
+
version: "1.2.1",
|
|
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.2.
|
|
73
|
+
log.info(` Version: 1.2.1`);
|
|
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.2.
|
|
479
|
+
console.error("║ NotebookLM MCP Server v1.2.1 ║");
|
|
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.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "MCP server for NotebookLM API with HTTP REST API - Zero hallucinations from your notebooks",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"dev:http": "tsx watch src/http-wrapper.ts",
|
|
14
14
|
"start:http": "node dist/http-wrapper.js",
|
|
15
15
|
"daemon:start": "pm2 start ecosystem.config.cjs",
|
|
16
|
-
"daemon:stop": "pm2 stop notebooklm-
|
|
17
|
-
"daemon:restart": "pm2 restart notebooklm-
|
|
18
|
-
"daemon:logs": "pm2 logs notebooklm-
|
|
16
|
+
"daemon:stop": "pm2 stop notebooklm-mcp",
|
|
17
|
+
"daemon:restart": "pm2 restart notebooklm-mcp",
|
|
18
|
+
"daemon:logs": "pm2 logs notebooklm-mcp",
|
|
19
19
|
"daemon:status": "pm2 status",
|
|
20
|
-
"daemon:delete": "pm2 delete notebooklm-
|
|
20
|
+
"daemon:delete": "pm2 delete notebooklm-mcp",
|
|
21
21
|
"setup-auth": "node dist/index.js",
|
|
22
22
|
"prepare": "npm run build",
|
|
23
23
|
"test": "tsx src/index.ts"
|