package.json•2.05 kB
{
"name": "@roomi-fields/notebooklm-mcp",
"version": "1.2.1",
"description": "MCP server for NotebookLM API with HTTP REST API - Zero hallucinations from your notebooks",
"type": "module",
"bin": {
"notebooklm-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"dev": "tsx watch src/index.ts",
"dev:http": "tsx watch src/http-wrapper.ts",
"start:http": "node dist/http-wrapper.js",
"daemon:start": "pm2 start ecosystem.config.cjs",
"daemon:stop": "pm2 stop notebooklm-mcp",
"daemon:restart": "pm2 restart notebooklm-mcp",
"daemon:logs": "pm2 logs notebooklm-mcp",
"daemon:status": "pm2 status",
"daemon:delete": "pm2 delete notebooklm-mcp",
"setup-auth": "node dist/index.js",
"prepare": "npm run build",
"test": "tsx src/index.ts"
},
"keywords": [
"mcp",
"notebooklm",
"gemini",
"ai",
"claude",
"n8n",
"automation",
"rest-api",
"http-server",
"workflow"
],
"author": "Romain Peyrichou (https://github.com/roomi-fields)",
"contributors": [
"Gérôme Dexheimer <hello@geromedexheimer.de> (https://github.com/PleasePrompto)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/roomi-fields/notebooklm-mcp.git"
},
"homepage": "https://github.com/roomi-fields/notebooklm-mcp#readme",
"bugs": {
"url": "https://github.com/roomi-fields/notebooklm-mcp/issues"
},
"files": [
"dist",
"README.md",
"NOTEBOOKLM_USAGE.md",
"LICENSE",
"docs"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.0",
"env-paths": "^3.0.0",
"express": "^4.18.2",
"globby": "^14.1.0",
"patchright": "^1.48.2",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"pm2": "^5.4.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}