package.json•3.27 kB
{
"name": "@roomi-fields/notebooklm-mcp",
"version": "1.3.6",
"description": "MCP server for NotebookLM API with HTTP REST API - Zero hallucinations from your notebooks",
"type": "module",
"bin": {
"notebooklm-mcp": "dist/index.js"
},
"scripts": {
"help": "node dist/cli/help.js",
"setup-auth": "node dist/cli/setup-auth.js",
"de-auth": "node dist/cli/de-auth.js",
"start:http": "node dist/http-wrapper.js",
"dev:http": "tsx watch src/http-wrapper.ts",
"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",
"build": "tsc",
"watch": "tsc --watch",
"dev": "tsx watch src/index.ts",
"prepare": "husky",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:ci": "node --experimental-vm-modules node_modules/jest/bin/jest.js --ci --coverage --reporters=default",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPatterns=unit",
"test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPatterns=integration"
},
"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": {
"@eslint/js": "^9.39.1",
"@jest/globals": "^30.2.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"pm2": "^6.0.14",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"tsx": "^4.7.0",
"type-coverage": "^2.29.7",
"typescript": "^5.3.3",
"typescript-eslint": "^8.48.0"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}