@pan-sec/notebooklm-mcp 2026.1.2 → 2026.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.
- package/README.md +24 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -722,8 +722,32 @@ NLMCP_CERT_PINNING=true
|
|
|
722
722
|
|
|
723
723
|
# Audit Logging
|
|
724
724
|
NLMCP_AUDIT_ENABLED=true
|
|
725
|
+
|
|
726
|
+
# Multi-Session Support (v2026.1.2+)
|
|
727
|
+
NOTEBOOK_PROFILE_STRATEGY=isolated # isolated|single|auto
|
|
728
|
+
NOTEBOOK_CLONE_PROFILE=true # Clone auth from base profile
|
|
729
|
+
```
|
|
730
|
+
|
|
731
|
+
### Multi-Session Mode
|
|
732
|
+
|
|
733
|
+
Run multiple Claude Code sessions simultaneously with isolated browser profiles:
|
|
734
|
+
|
|
735
|
+
```bash
|
|
736
|
+
# Add to ~/.bashrc or ~/.zshrc
|
|
737
|
+
export NOTEBOOK_PROFILE_STRATEGY=isolated
|
|
738
|
+
export NOTEBOOK_CLONE_PROFILE=true
|
|
725
739
|
```
|
|
726
740
|
|
|
741
|
+
| Variable | Values | Description |
|
|
742
|
+
|----------|--------|-------------|
|
|
743
|
+
| `NOTEBOOK_PROFILE_STRATEGY` | `single`, `auto`, `isolated` | `isolated` = separate profile per session |
|
|
744
|
+
| `NOTEBOOK_CLONE_PROFILE` | `true`, `false` | Clone authenticated base profile into isolated instances |
|
|
745
|
+
|
|
746
|
+
**How it works:**
|
|
747
|
+
- Each session gets its own Chrome profile (no lock conflicts)
|
|
748
|
+
- Isolated profiles clone from the authenticated base profile
|
|
749
|
+
- Auth coordination ensures cloning waits for any in-progress authentication
|
|
750
|
+
|
|
727
751
|
See [SECURITY.md](./SECURITY.md) for complete configuration reference.
|
|
728
752
|
|
|
729
753
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pan-sec/notebooklm-mcp",
|
|
3
|
-
"version": "2026.1.
|
|
3
|
+
"version": "2026.1.3",
|
|
4
4
|
"description": "Security-hardened MCP server for NotebookLM API with enterprise compliance (GDPR, SOC2, CSSF)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
],
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@google/genai": "^1.34.0",
|
|
57
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
57
|
+
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
58
58
|
"@noble/post-quantum": "^0.2.1",
|
|
59
59
|
"dotenv": "^16.4.0",
|
|
60
60
|
"env-paths": "^3.0.0",
|