-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.12 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
{
"name": "@mcpware/notebooklm-api",
"version": "0.1.1",
"description": "NotebookLM-quality document Q&A with per-passage citations via official Gemini File Search API. Upload docs, ask questions, get zero-hallucination answers with structured citations.",
"type": "module",
"main": "dist/index.js",
"bin": {
"notebooklm-api": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "node --test tests/"
},
"keywords": [
"mcp",
"notebooklm",
"gemini",
"rag",
"citations",
"document-qa",
"file-search",
"grounding",
"model-context-protocol",
"ai-agent",
"claude",
"legal",
"research"
],
"mcpName": "io.github.mcpware/notebooklm-api",
"author": "mcpware",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mcpware/notebooklm-api"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@google/genai": "^1.1.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"@types/node": "^22.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}