@pan-sec/notebooklm-mcp 2026.1.4 → 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 +91 -0
- package/docs/SECURITY-FORK-OPPORTUNITIES.md +79 -0
- package/package.json +3 -1
- package/server.json +20 -0
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
|
---
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# MCP Directory Listings Tracker
|
|
2
|
+
|
|
3
|
+
Track where `@pan-sec/notebooklm-mcp` is listed and submission progress.
|
|
4
|
+
|
|
5
|
+
**Last Updated:** 2026-01-24
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Current Listings
|
|
10
|
+
|
|
11
|
+
| Directory | Status | URL | Notes |
|
|
12
|
+
|-----------|--------|-----|-------|
|
|
13
|
+
| [Official MCP Registry](https://registry.modelcontextprotocol.io/) | ✅ Listed | io.github.Pantheon-Security/notebooklm-mcp-secure | Published 2026-01-24 |
|
|
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 |
|
|
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 |
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## Pending Submissions
|
|
21
|
+
|
|
22
|
+
### Priority 2: Good Visibility
|
|
23
|
+
|
|
24
|
+
#### MCP.so
|
|
25
|
+
- **URL:** https://mcp.so/
|
|
26
|
+
- **Submit via:** https://github.com/chatmcp/mcpso
|
|
27
|
+
- **Status:** ⏳ Not submitted
|
|
28
|
+
- **Notes:** Popular directory with call ranking leaderboard.
|
|
29
|
+
|
|
30
|
+
#### MCPServers.org
|
|
31
|
+
- **URL:** https://mcpservers.org/
|
|
32
|
+
- **Submit via:** Unknown - check site
|
|
33
|
+
- **Status:** ⏳ Not submitted
|
|
34
|
+
- **Notes:** Has original notebooklm-mcp, not secure fork.
|
|
35
|
+
|
|
36
|
+
#### mcp-get.com
|
|
37
|
+
- **URL:** https://mcp-get.com/
|
|
38
|
+
- **Submit via:** Package registry submission
|
|
39
|
+
- **Status:** ⏳ Not submitted
|
|
40
|
+
- **Notes:** Package manager style directory.
|
|
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
|
+
|
|
49
|
+
### Priority 3: Niche/Emerging
|
|
50
|
+
|
|
51
|
+
#### Azure API Center
|
|
52
|
+
- **URL:** https://learn.microsoft.com/en-us/azure/api-center/register-discover-mcp-server
|
|
53
|
+
- **Submit via:** Azure portal
|
|
54
|
+
- **Status:** ⏳ Not applicable yet
|
|
55
|
+
- **Notes:** Enterprise Azure integration. Consider for enterprise customers.
|
|
56
|
+
|
|
57
|
+
#### awesome-devops-mcp-servers
|
|
58
|
+
- **URL:** https://github.com/rohitg00/awesome-devops-mcp-servers
|
|
59
|
+
- **Submit via:** Pull Request
|
|
60
|
+
- **Status:** ⏳ Not submitted
|
|
61
|
+
- **Notes:** DevOps focused list. May not be relevant.
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Completed
|
|
66
|
+
|
|
67
|
+
- [x] Official MCP Registry - Published 2026-01-24
|
|
68
|
+
- [x] Glama.ai - Auto-listed
|
|
69
|
+
- [x] PulseMCP - Auto-indexed
|
|
70
|
+
- [x] awesome-mcp-servers - PR #1735 submitted
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## Related Projects
|
|
75
|
+
|
|
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 ✅ |
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## Stats
|
|
84
|
+
|
|
85
|
+
- **PulseMCP Rank:** #601 this week, #3,227 global
|
|
86
|
+
- **GitHub Stars:** 14
|
|
87
|
+
- **npm:** @pan-sec/notebooklm-mcp v2026.1.5
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
*This document tracks MCP directory listings for visibility and discoverability.*
|
|
@@ -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,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pan-sec/notebooklm-mcp",
|
|
3
|
-
"version": "2026.1.
|
|
3
|
+
"version": "2026.1.6",
|
|
4
|
+
"mcpName": "io.github.Pantheon-Security/notebooklm-mcp-secure",
|
|
4
5
|
"description": "Security-hardened MCP server for NotebookLM API with enterprise compliance (GDPR, SOC2, CSSF)",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"bin": {
|
|
@@ -47,6 +48,7 @@
|
|
|
47
48
|
},
|
|
48
49
|
"files": [
|
|
49
50
|
"dist",
|
|
51
|
+
"server.json",
|
|
50
52
|
"README.md",
|
|
51
53
|
"SECURITY.md",
|
|
52
54
|
"LICENSE",
|
package/server.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.Pantheon-Security/notebooklm-mcp-secure",
|
|
4
|
+
"description": "Security-hardened NotebookLM MCP with post-quantum encryption",
|
|
5
|
+
"version": "2026.1.6",
|
|
6
|
+
"repository": {
|
|
7
|
+
"url": "https://github.com/Pantheon-Security/notebooklm-mcp-secure",
|
|
8
|
+
"source": "github"
|
|
9
|
+
},
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "@pan-sec/notebooklm-mcp",
|
|
14
|
+
"version": "2026.1.6",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|