CoolFace
Apppublic

epicaltrendweb/notebooklm-mcp-simple

sourceHugging Facemitupdated 7mo agoView on Hugging Face
0likes
package.json58 linesDownload Raw Back to root
1{2  "name": "notebooklm-mcp",3  "version": "1.2.1",4  "description": "MCP server for NotebookLM API with session support and human-like behavior",5  "type": "module",6  "bin": {7    "notebooklm-mcp": "dist/index.js"8  },9  "scripts": {10    "build": "tsc",11    "postbuild": "chmod +x dist/index.js",12    "watch": "tsc --watch",13    "dev": "tsx watch src/index.ts",14    "prepare": "npm run build",15    "test": "tsx src/index.ts"16  },17  "keywords": [18    "mcp",19    "notebooklm",20    "gemini",21    "ai",22    "claude"23  ],24  "author": "Gérôme Dexheimer <hello@geromedexheimer.de> (https://github.com/PleasePrompto)",25  "license": "MIT",26  "repository": {27    "type": "git",28    "url": "git+https://github.com/PleasePrompto/notebooklm-mcp.git"29  },30  "homepage": "https://github.com/PleasePrompto/notebooklm-mcp#readme",31  "bugs": {32    "url": "https://github.com/PleasePrompto/notebooklm-mcp/issues"33  },34  "files": [35    "dist",36    "README.md",37    "NOTEBOOKLM_USAGE.md",38    "LICENSE",39    "docs"40  ],41  "dependencies": {42    "@modelcontextprotocol/sdk": "^1.0.0",43    "dotenv": "^16.4.0",44    "env-paths": "^3.0.0",45    "globby": "^14.1.0",46    "patchright": "^1.48.2",47    "zod": "^3.22.0"48  },49  "devDependencies": {50    "@types/node": "^20.11.0",51    "tsx": "^4.7.0",52    "typescript": "^5.3.3"53  },54  "engines": {55    "node": ">=18.0.0"56  }57}58