@pan-sec/notebooklm-mcp 2026.1.5 → 2026.1.6
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 +106 -2
- package/docs/MCP-DIRECTORY-LISTINGS.md +23 -116
- package/docs/SECURITY-FORK-OPPORTUNITIES.md +79 -0
- package/package.json +1 -1
- package/server.json +2 -2
package/README.md
CHANGED
|
@@ -580,9 +580,106 @@ Add to `~/.cursor/mcp.json`:
|
|
|
580
580
|
```
|
|
581
581
|
</details>
|
|
582
582
|
|
|
583
|
+
<details>
|
|
584
|
+
<summary>Google Antigravity</summary>
|
|
585
|
+
|
|
586
|
+
Add to `~/.gemini/antigravity/mcp_config.json` (macOS/Linux) or `%USERPROFILE%\.gemini\antigravity\mcp_config.json` (Windows):
|
|
587
|
+
```json
|
|
588
|
+
{
|
|
589
|
+
"mcpServers": {
|
|
590
|
+
"notebooklm": {
|
|
591
|
+
"command": "npx",
|
|
592
|
+
"args": ["-y", "@pan-sec/notebooklm-mcp@latest"]
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
```
|
|
597
|
+
|
|
598
|
+
With optional env vars:
|
|
599
|
+
```json
|
|
600
|
+
{
|
|
601
|
+
"mcpServers": {
|
|
602
|
+
"notebooklm": {
|
|
603
|
+
"command": "npx",
|
|
604
|
+
"args": ["-y", "@pan-sec/notebooklm-mcp@latest"],
|
|
605
|
+
"env": {
|
|
606
|
+
"GEMINI_API_KEY": "your-gemini-api-key"
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
```
|
|
612
|
+
|
|
613
|
+
> **Note:** Antigravity does NOT support `${workspaceFolder}` variables. Use absolute paths.
|
|
614
|
+
</details>
|
|
615
|
+
|
|
616
|
+
<details>
|
|
617
|
+
<summary>OpenCode</summary>
|
|
618
|
+
|
|
619
|
+
Add to `~/.config/opencode/opencode.json` (global) or `opencode.json` in project root:
|
|
620
|
+
```json
|
|
621
|
+
{
|
|
622
|
+
"$schema": "https://opencode.ai/config.json",
|
|
623
|
+
"mcp": {
|
|
624
|
+
"notebooklm": {
|
|
625
|
+
"type": "local",
|
|
626
|
+
"command": ["npx", "-y", "@pan-sec/notebooklm-mcp@latest"],
|
|
627
|
+
"enabled": true,
|
|
628
|
+
"environment": {
|
|
629
|
+
"GEMINI_API_KEY": "your-gemini-api-key"
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
```
|
|
635
|
+
|
|
636
|
+
> **Note:** OpenCode uses `"mcp"` (not `"mcpServers"`) and `"command"` is an array.
|
|
637
|
+
</details>
|
|
638
|
+
|
|
639
|
+
<details>
|
|
640
|
+
<summary>Windsurf</summary>
|
|
641
|
+
|
|
642
|
+
Add to `~/.codeium/windsurf/mcp_config.json`:
|
|
643
|
+
```json
|
|
644
|
+
{
|
|
645
|
+
"mcpServers": {
|
|
646
|
+
"notebooklm": {
|
|
647
|
+
"command": "npx",
|
|
648
|
+
"args": ["-y", "@pan-sec/notebooklm-mcp@latest"],
|
|
649
|
+
"env": {
|
|
650
|
+
"GEMINI_API_KEY": "your-gemini-api-key"
|
|
651
|
+
}
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
```
|
|
656
|
+
</details>
|
|
657
|
+
|
|
658
|
+
<details>
|
|
659
|
+
<summary>VS Code + Copilot</summary>
|
|
660
|
+
|
|
661
|
+
Add to your VS Code `settings.json`:
|
|
662
|
+
```json
|
|
663
|
+
{
|
|
664
|
+
"mcp": {
|
|
665
|
+
"servers": {
|
|
666
|
+
"notebooklm": {
|
|
667
|
+
"command": "npx",
|
|
668
|
+
"args": ["-y", "@pan-sec/notebooklm-mcp@latest"],
|
|
669
|
+
"env": {
|
|
670
|
+
"GEMINI_API_KEY": "your-gemini-api-key"
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
```
|
|
677
|
+
</details>
|
|
678
|
+
|
|
583
679
|
<details>
|
|
584
680
|
<summary>Other MCP Clients</summary>
|
|
585
681
|
|
|
682
|
+
Most MCP clients use this standard format:
|
|
586
683
|
```json
|
|
587
684
|
{
|
|
588
685
|
"mcpServers": {
|
|
@@ -590,14 +687,21 @@ Add to `~/.cursor/mcp.json`:
|
|
|
590
687
|
"command": "npx",
|
|
591
688
|
"args": ["-y", "@pan-sec/notebooklm-mcp@latest"],
|
|
592
689
|
"env": {
|
|
593
|
-
"NLMCP_AUTH_ENABLED": "true",
|
|
594
|
-
"NLMCP_AUTH_TOKEN": "your-secure-token",
|
|
595
690
|
"GEMINI_API_KEY": "your-gemini-api-key"
|
|
596
691
|
}
|
|
597
692
|
}
|
|
598
693
|
}
|
|
599
694
|
}
|
|
600
695
|
```
|
|
696
|
+
|
|
697
|
+
**Common config locations:**
|
|
698
|
+
| Client | Config File |
|
|
699
|
+
|--------|-------------|
|
|
700
|
+
| Claude Desktop | `~/.config/claude/claude_desktop_config.json` |
|
|
701
|
+
| Cursor | `~/.cursor/mcp.json` |
|
|
702
|
+
| Antigravity | `~/.gemini/antigravity/mcp_config.json` |
|
|
703
|
+
| OpenCode | `~/.config/opencode/opencode.json` |
|
|
704
|
+
| Windsurf | `~/.codeium/windsurf/mcp_config.json` |
|
|
601
705
|
</details>
|
|
602
706
|
|
|
603
707
|
---
|
|
@@ -10,39 +10,15 @@ Track where `@pan-sec/notebooklm-mcp` is listed and submission progress.
|
|
|
10
10
|
|
|
11
11
|
| Directory | Status | URL | Notes |
|
|
12
12
|
|-----------|--------|-----|-------|
|
|
13
|
+
| [Official MCP Registry](https://registry.modelcontextprotocol.io/) | ✅ Listed | io.github.Pantheon-Security/notebooklm-mcp-secure | Published 2026-01-24 |
|
|
13
14
|
| [Glama.ai](https://glama.ai/mcp/servers) | ✅ Listed | [View Listing](https://glama.ai/mcp/servers/@Pantheon-Security/notebooklm-mcp-secure) | Auto-indexed from GitHub |
|
|
14
|
-
| [
|
|
15
|
+
| [PulseMCP](https://www.pulsemcp.com/servers) | ✅ Listed | [View Listing](https://www.pulsemcp.com/servers/pantheon-security-notebooklm-secure) | Auto-indexed, #601 this week |
|
|
16
|
+
| [awesome-mcp-servers](https://github.com/punkpeye/awesome-mcp-servers) | ⏳ PR Pending | [PR #1735](https://github.com/punkpeye/awesome-mcp-servers/pull/1735) | Submitted 2026-01-24 |
|
|
15
17
|
|
|
16
18
|
---
|
|
17
19
|
|
|
18
20
|
## Pending Submissions
|
|
19
21
|
|
|
20
|
-
### Priority 1: High Impact
|
|
21
|
-
|
|
22
|
-
#### Official MCP Registry
|
|
23
|
-
- **URL:** https://registry.modelcontextprotocol.io/
|
|
24
|
-
- **Submit via:** PR to https://github.com/modelcontextprotocol/registry
|
|
25
|
-
- **Status:** ⏳ Not submitted
|
|
26
|
-
- **Notes:** Official registry backed by Anthropic, GitHub, Microsoft. High visibility.
|
|
27
|
-
- **Submission Guide:** https://registry.modelcontextprotocol.io/docs
|
|
28
|
-
|
|
29
|
-
#### awesome-mcp-servers (Add notebooklm)
|
|
30
|
-
- **URL:** https://github.com/punkpeye/awesome-mcp-servers
|
|
31
|
-
- **Submit via:** Pull Request
|
|
32
|
-
- **Status:** ⏳ Not submitted
|
|
33
|
-
- **Notes:** Already have chrome-mcp-secure listed. Add notebooklm under "Knowledge & Memory" section.
|
|
34
|
-
- **Entry to add:**
|
|
35
|
-
```markdown
|
|
36
|
-
- [notebooklm-mcp-secure](https://github.com/Pantheon-Security/notebooklm-mcp-secure) - Security-hardened NotebookLM MCP with post-quantum encryption, GDPR/SOC2 compliance, and 14 security layers. Query Google's Gemini-grounded research from Claude/AI agents.
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
#### PulseMCP
|
|
40
|
-
- **URL:** https://www.pulsemcp.com/servers
|
|
41
|
-
- **Size:** 7,900+ servers (largest directory)
|
|
42
|
-
- **Submit via:** Auto-indexed from npm/GitHub or manual submission
|
|
43
|
-
- **Status:** ⏳ Not submitted
|
|
44
|
-
- **Notes:** Check if auto-indexed. If not, contact for listing.
|
|
45
|
-
|
|
46
22
|
### Priority 2: Good Visibility
|
|
47
23
|
|
|
48
24
|
#### MCP.so
|
|
@@ -57,18 +33,19 @@ Track where `@pan-sec/notebooklm-mcp` is listed and submission progress.
|
|
|
57
33
|
- **Status:** ⏳ Not submitted
|
|
58
34
|
- **Notes:** Has original notebooklm-mcp, not secure fork.
|
|
59
35
|
|
|
60
|
-
#### Smithery.ai
|
|
61
|
-
- **URL:** https://smithery.ai/
|
|
62
|
-
- **Submit via:** Smithery CLI or web submission
|
|
63
|
-
- **Status:** ⏳ Not submitted
|
|
64
|
-
- **CLI:** `npx @anthropic-ai/mcp-registry add`
|
|
65
|
-
|
|
66
36
|
#### mcp-get.com
|
|
67
37
|
- **URL:** https://mcp-get.com/
|
|
68
38
|
- **Submit via:** Package registry submission
|
|
69
39
|
- **Status:** ⏳ Not submitted
|
|
70
40
|
- **Notes:** Package manager style directory.
|
|
71
41
|
|
|
42
|
+
### Requires Hosted Server
|
|
43
|
+
|
|
44
|
+
#### Smithery.ai
|
|
45
|
+
- **URL:** https://smithery.ai/
|
|
46
|
+
- **Status:** ❌ Requires remote hosting
|
|
47
|
+
- **Notes:** Server/Client style MCP. Would need to deploy notebooklm-mcp as a hosted service.
|
|
48
|
+
|
|
72
49
|
### Priority 3: Niche/Emerging
|
|
73
50
|
|
|
74
51
|
#### Azure API Center
|
|
@@ -85,99 +62,29 @@ Track where `@pan-sec/notebooklm-mcp` is listed and submission progress.
|
|
|
85
62
|
|
|
86
63
|
---
|
|
87
64
|
|
|
88
|
-
##
|
|
89
|
-
|
|
90
|
-
### GitHub PR Template (awesome lists)
|
|
91
|
-
|
|
92
|
-
```markdown
|
|
93
|
-
## Add notebooklm-mcp-secure
|
|
94
|
-
|
|
95
|
-
### Description
|
|
96
|
-
Adding security-hardened NotebookLM MCP server to the Knowledge & Memory section.
|
|
97
|
-
|
|
98
|
-
### Server Details
|
|
99
|
-
- **Name:** notebooklm-mcp-secure
|
|
100
|
-
- **GitHub:** https://github.com/Pantheon-Security/notebooklm-mcp-secure
|
|
101
|
-
- **npm:** @pan-sec/notebooklm-mcp
|
|
102
|
-
- **Category:** Knowledge & Memory / Research
|
|
103
|
-
|
|
104
|
-
### Features
|
|
105
|
-
- Query Google NotebookLM from Claude/AI agents
|
|
106
|
-
- Post-quantum encryption (ML-KEM-768 + ChaCha20-Poly1305)
|
|
107
|
-
- GDPR, SOC2, CSSF compliance tools
|
|
108
|
-
- 14 security hardening layers
|
|
109
|
-
- Gemini Deep Research API integration
|
|
110
|
-
|
|
111
|
-
### Checklist
|
|
112
|
-
- [x] Server is open source
|
|
113
|
-
- [x] Server is actively maintained
|
|
114
|
-
- [x] Server has documentation
|
|
115
|
-
- [x] Server is published on npm
|
|
116
|
-
```
|
|
117
|
-
|
|
118
|
-
### Registry JSON Template
|
|
119
|
-
|
|
120
|
-
```json
|
|
121
|
-
{
|
|
122
|
-
"name": "@pan-sec/notebooklm-mcp",
|
|
123
|
-
"description": "Security-hardened MCP server for NotebookLM with post-quantum encryption and enterprise compliance",
|
|
124
|
-
"repository": "https://github.com/Pantheon-Security/notebooklm-mcp-secure",
|
|
125
|
-
"homepage": "https://github.com/Pantheon-Security/notebooklm-mcp-secure#readme",
|
|
126
|
-
"keywords": [
|
|
127
|
-
"mcp",
|
|
128
|
-
"notebooklm",
|
|
129
|
-
"gemini",
|
|
130
|
-
"security",
|
|
131
|
-
"post-quantum",
|
|
132
|
-
"gdpr",
|
|
133
|
-
"soc2",
|
|
134
|
-
"compliance",
|
|
135
|
-
"claude"
|
|
136
|
-
],
|
|
137
|
-
"categories": ["research", "knowledge", "security"],
|
|
138
|
-
"author": "Pantheon Security",
|
|
139
|
-
"license": "MIT"
|
|
140
|
-
}
|
|
141
|
-
```
|
|
142
|
-
|
|
143
|
-
---
|
|
144
|
-
|
|
145
|
-
## Tracking Progress
|
|
65
|
+
## Completed
|
|
146
66
|
|
|
147
|
-
|
|
67
|
+
- [x] Official MCP Registry - Published 2026-01-24
|
|
148
68
|
- [x] Glama.ai - Auto-listed
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
- [ ] awesome-mcp-servers PR
|
|
152
|
-
- [ ] Official MCP Registry submission
|
|
153
|
-
- [ ] PulseMCP check/submission
|
|
154
|
-
|
|
155
|
-
### Backlog
|
|
156
|
-
- [ ] MCP.so
|
|
157
|
-
- [ ] MCPServers.org
|
|
158
|
-
- [ ] Smithery.ai
|
|
159
|
-
- [ ] mcp-get.com
|
|
69
|
+
- [x] PulseMCP - Auto-indexed
|
|
70
|
+
- [x] awesome-mcp-servers - PR #1735 submitted
|
|
160
71
|
|
|
161
72
|
---
|
|
162
73
|
|
|
163
|
-
##
|
|
74
|
+
## Related Projects
|
|
164
75
|
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
5. **Stars:** 14 stars shows traction - mention in submissions
|
|
76
|
+
| Project | Directories Listed |
|
|
77
|
+
|---------|-------------------|
|
|
78
|
+
| [chrome-mcp-secure](https://github.com/Pantheon-Security/chrome-mcp-secure) | awesome-mcp-servers ✅ |
|
|
79
|
+
| [notebooklm-mcp-secure](https://github.com/Pantheon-Security/notebooklm-mcp-secure) | Official Registry ✅, Glama ✅, PulseMCP ✅ |
|
|
170
80
|
|
|
171
81
|
---
|
|
172
82
|
|
|
173
|
-
##
|
|
174
|
-
|
|
175
|
-
Also submit these Pantheon Security MCP servers:
|
|
83
|
+
## Stats
|
|
176
84
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
| [notebooklm-mcp-secure](https://github.com/Pantheon-Security/notebooklm-mcp-secure) | Glama ✅ |
|
|
85
|
+
- **PulseMCP Rank:** #601 this week, #3,227 global
|
|
86
|
+
- **GitHub Stars:** 14
|
|
87
|
+
- **npm:** @pan-sec/notebooklm-mcp v2026.1.5
|
|
181
88
|
|
|
182
89
|
---
|
|
183
90
|
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Security Fork Opportunities
|
|
2
|
+
|
|
3
|
+
MCP servers that could benefit from Pantheon Security hardening.
|
|
4
|
+
|
|
5
|
+
**Last Updated:** 2026-01-24
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## High Priority (High Traffic + High Risk)
|
|
10
|
+
|
|
11
|
+
| Rank | Server | Weekly Visitors | Security Gaps | Effort |
|
|
12
|
+
|------|--------|-----------------|---------------|--------|
|
|
13
|
+
| #4 | **Filesystem** (Anthropic) | 193K | No sandboxing, no path validation, no audit logging | Medium |
|
|
14
|
+
| #18 | **PostgreSQL** (Anthropic) | 31.8K | SQL injection risk, no query validation, no audit trails | Medium |
|
|
15
|
+
| #17 | **MongoDB** (MongoDB Inc.) | 35.6K | NoSQL injection, data exfiltration, no encryption | Medium |
|
|
16
|
+
| #12 | **Git** (Anthropic) | 66.8K | Command execution, credential exposure, repo tampering | Medium |
|
|
17
|
+
| #19 | **Supabase** (Supabase) | 40.5K | Database + auth, credential exposure, API key leaks | High |
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Medium Priority (Good Traffic + Moderate Risk)
|
|
22
|
+
|
|
23
|
+
| Rank | Server | Weekly Visitors | Security Gaps | Effort |
|
|
24
|
+
|------|--------|-----------------|---------------|--------|
|
|
25
|
+
| #3 | **Fetch** (Anthropic) | 249K | URL validation, SSRF risks, data exfiltration | Low |
|
|
26
|
+
| #7 | **Claude Flow** (ruvnet) | 163K | Agent orchestration, prompt injection, privilege escalation | High |
|
|
27
|
+
| #8 | **Playwriter** (Community) | 129K | Browser automation, credential capture, DOM injection | Medium |
|
|
28
|
+
| #20 | **Notion** (Notion) | 26.7K | API key exposure, data access logging | Low |
|
|
29
|
+
| #16 | **Zapier** (Zapier) | 48.9K | 8000+ app integrations, credential management | High |
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Already Covered
|
|
34
|
+
|
|
35
|
+
| Server | Pantheon Fork | Status |
|
|
36
|
+
|--------|---------------|--------|
|
|
37
|
+
| Chrome/Playwright | [chrome-mcp-secure](https://github.com/Pantheon-Security/chrome-mcp-secure) | ✅ Published |
|
|
38
|
+
| NotebookLM | [notebooklm-mcp-secure](https://github.com/Pantheon-Security/notebooklm-mcp-secure) | ✅ Published |
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## Security Layers to Add
|
|
43
|
+
|
|
44
|
+
Standard Pantheon Security hardening:
|
|
45
|
+
|
|
46
|
+
1. **Input Validation** - Zod schemas, path traversal prevention
|
|
47
|
+
2. **Audit Logging** - Hash-chained logs, SIEM integration
|
|
48
|
+
3. **Post-Quantum Encryption** - ML-KEM-768 + ChaCha20-Poly1305
|
|
49
|
+
4. **Credential Protection** - Secrets scanning, memory scrubbing
|
|
50
|
+
5. **Rate Limiting** - Abuse prevention
|
|
51
|
+
6. **Compliance Tools** - GDPR consent, SOC2 evidence, CSSF retention
|
|
52
|
+
7. **Session Security** - Timeouts, MCP authentication
|
|
53
|
+
8. **Response Validation** - Output sanitization
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## Recommended First Target
|
|
58
|
+
|
|
59
|
+
**filesystem-mcp-secure**
|
|
60
|
+
- Highest risk (direct file system access)
|
|
61
|
+
- Large user base (193K weekly)
|
|
62
|
+
- Clear value prop: "Secure file access with sandboxing and audit trails"
|
|
63
|
+
- Anthropic's official = credibility for fork
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Research Links
|
|
68
|
+
|
|
69
|
+
| Server | GitHub |
|
|
70
|
+
|--------|--------|
|
|
71
|
+
| Filesystem | https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem |
|
|
72
|
+
| PostgreSQL | https://github.com/modelcontextprotocol/servers/tree/main/src/postgres |
|
|
73
|
+
| Git | https://github.com/modelcontextprotocol/servers/tree/main/src/git |
|
|
74
|
+
| MongoDB | https://github.com/mongodb/mcp-server |
|
|
75
|
+
| Fetch | https://github.com/modelcontextprotocol/servers/tree/main/src/fetch |
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
*Track progress and prioritize based on enterprise customer demand.*
|
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.6",
|
|
4
4
|
"mcpName": "io.github.Pantheon-Security/notebooklm-mcp-secure",
|
|
5
5
|
"description": "Security-hardened MCP server for NotebookLM API with enterprise compliance (GDPR, SOC2, CSSF)",
|
|
6
6
|
"type": "module",
|
package/server.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.Pantheon-Security/notebooklm-mcp-secure",
|
|
4
4
|
"description": "Security-hardened NotebookLM MCP with post-quantum encryption",
|
|
5
|
-
"version": "2026.1.
|
|
5
|
+
"version": "2026.1.6",
|
|
6
6
|
"repository": {
|
|
7
7
|
"url": "https://github.com/Pantheon-Security/notebooklm-mcp-secure",
|
|
8
8
|
"source": "github"
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "@pan-sec/notebooklm-mcp",
|
|
14
|
-
"version": "2026.1.
|
|
14
|
+
"version": "2026.1.6",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
}
|