@roomi-fields/notebooklm-mcp 1.1.3 → 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/dist/http-wrapper.js +1 -1
- package/dist/index.js +3 -3
- package/package.json +1 -1
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.1.
|
|
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.
|
|
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.
|
|
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.
|
|
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("║ ║");
|