{ "name": "@roomi-fields/notebooklm-mcp", "version": "3.2.0", "mcpName": "io.github.roomi-fields/notebooklm-mcp", "description": "MCP server for NotebookLM API with HTTP REST API - Zero hallucinations from your notebooks", "type": "module", "bin": { "notebooklm-mcp": "dist/index.js", "notebooklm-mcp-proxy": "dist/stdio-http-proxy.js", "notebooklm-mcp-setup-auth": "dist/cli/setup-auth.js" }, "scripts": { "help": "node dist/cli/help.js", "setup-auth": "node dist/cli/setup-auth.js", "de-auth": "node dist/cli/de-auth.js", "accounts": "node dist/cli/accounts.js", "doctor:basic": "node scripts/doctor.mjs --basic", "doctor:http": "node scripts/doctor.mjs --http", "start:http": "node dist/http-wrapper.js", "start:proxy": "node dist/stdio-http-proxy.js", "dev:http": "tsx watch src/http-wrapper.ts", "dev:proxy": "tsx watch src/stdio-http-proxy.ts", "build": "tsc && npm run build:i18n && npm run build:chmod-bin", "build:chmod-bin": "node -e \"require('fs').chmodSync('dist/index.js', 0o755); require('fs').chmodSync('dist/stdio-http-proxy.js', 0o755); require('fs').chmodSync('dist/cli/setup-auth.js', 0o755);\"", "version:sync": "node scripts/sync-version.mjs", "version:check": "node scripts/sync-version.mjs --check", "skill:check": "node scripts/check-skill-sync.mjs", "build:i18n": "node -e \"require('fs').cpSync('src/i18n', 'dist/i18n', {recursive: true, filter: (s) => s.endsWith('.json') || require('fs').statSync(s).isDirectory()})\"", "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", "test:e2e": "powershell -ExecutionPolicy Bypass -File tests/e2e/run-e2e-tests.ps1", "test:e2e:basic": "powershell -ExecutionPolicy Bypass -File tests/e2e/run-e2e-tests.ps1 -SkipBrowserTests" }, "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 (https://github.com/PleasePrompto)", "Khizar Jamshaid Iqbal (https://github.com/KhizarJamshaidIqbal)", "Kazik Pietka (https://github.com/kpietkaa)", "Rui Ruiberriz (https://github.com/Excauboi)", "he0xwhale (https://github.com/he0xwhale)", "eminsnow (https://github.com/eminsnow)", "Julien Cantoni (https://github.com/JulienCANTONI)" ], "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", "scripts", "skills", "deployment" ], "overrides": { "ip-address": "^10.3.1", "fast-uri": "^4.1.4", "hono": "^4.12.34", "@hono/node-server": "^2.0.5", "brace-expansion@^5.0.0": "^5.0.6", "qs": "^6.16.0" }, "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", "otplib": "^12.0.1", "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", "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" ] } }