forked from Pantheon-Security/notebooklm-mcp-secure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·112 lines (112 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·112 lines (112 loc) · 2.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@pan-sec/notebooklm-mcp",
"version": "2026.1.5",
"mcpName": "io.github.Pantheon-Security/notebooklm-mcp-secure",
"description": "Security-hardened MCP server for NotebookLM API with enterprise compliance (GDPR, SOC2, CSSF)",
"type": "module",
"bin": {
"notebooklm-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "node -e \"if(process.platform!=='win32'){require('fs').chmodSync('dist/index.js',0o755)}\"",
"watch": "tsc --watch",
"dev": "tsx watch src/index.ts",
"prepare": "npm run build",
"test": "npx vitest run",
"test:watch": "npx vitest",
"security-check": "npm audit",
"security-scan": "medusa scan . --fail-on high"
},
"keywords": [
"mcp",
"notebooklm",
"gemini",
"ai",
"claude",
"security",
"hardened",
"gdpr",
"soc2",
"cssf",
"compliance",
"enterprise",
"audit-logging"
],
"author": "Pantheon Security <support@pantheonsecurity.io> (https://pantheonsecurity.io)",
"contributors": [
"Gérôme Dexheimer <hello@geromedexheimer.de> (https://github.com/PleasePrompto) - Original Author"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Pantheon-Security/notebooklm-mcp-secure.git"
},
"homepage": "https://github.com/Pantheon-Security/notebooklm-mcp-secure#readme",
"bugs": {
"url": "https://github.com/Pantheon-Security/notebooklm-mcp-secure/issues"
},
"files": [
"dist",
"server.json",
"README.md",
"SECURITY.md",
"LICENSE",
"docs"
],
"dependencies": {
"@google/genai": "^1.34.0",
"@modelcontextprotocol/sdk": "^1.25.2",
"@noble/post-quantum": "^0.2.1",
"dotenv": "^16.4.0",
"env-paths": "^3.0.0",
"globby": "^14.1.0",
"patchright": "^1.48.2",
"pdf-lib": "^1.17.1",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"securityHardening": {
"inputValidation": true,
"urlWhitelisting": true,
"rateLimiting": true,
"logSanitization": true,
"credentialMasking": true,
"auditLogging": true,
"sessionTimeout": true,
"mcpAuthentication": true,
"responseValidation": true,
"postQuantumEncryption": true,
"secretsScanning": true,
"certificatePinning": true,
"memoryScubbing": true,
"medusaIntegration": true
},
"enterpriseCompliance": {
"gdpr": {
"consentManagement": true,
"dataSubjectRights": true,
"dataPortability": true,
"rightToErasure": true,
"privacyNotice": true
},
"soc2": {
"hashChainedAuditLogs": true,
"changeManagement": true,
"incidentResponse": true,
"availabilityMonitoring": true
},
"cssf": {
"sevenYearRetention": true,
"siemIntegration": true,
"policyDocumentation": true
}
}
}