@m4ykeldev/notebooklm-mcp 0.1.17 → 0.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +52 -40
- package/dist/cli.js +488 -553
- package/dist/cli.js.map +1 -1
- package/package.json +9 -7
package/README.md
CHANGED
|
@@ -42,7 +42,9 @@ Integrate NotebookLM directly into your AI development workflow.
|
|
|
42
42
|
### 🤖 AI Editors & IDEs
|
|
43
43
|
|
|
44
44
|
#### **Claude Desktop / Claude Code**
|
|
45
|
+
|
|
45
46
|
Add this to your `claude_desktop_config.json` or MCP configuration:
|
|
47
|
+
|
|
46
48
|
```json
|
|
47
49
|
{
|
|
48
50
|
"mcpServers": {
|
|
@@ -55,6 +57,7 @@ Add this to your `claude_desktop_config.json` or MCP configuration:
|
|
|
55
57
|
```
|
|
56
58
|
|
|
57
59
|
#### **Cursor**
|
|
60
|
+
|
|
58
61
|
1. Go to **Settings** > **Features** > **MCP**.
|
|
59
62
|
2. Click **+ Add New MCP Server**.
|
|
60
63
|
3. **Name**: `NotebookLM`
|
|
@@ -62,9 +65,12 @@ Add this to your `claude_desktop_config.json` or MCP configuration:
|
|
|
62
65
|
5. **Command**: `npx -y @m4ykeldev/notebooklm-mcp serve`
|
|
63
66
|
|
|
64
67
|
#### **VS Code (MCP Client)**
|
|
68
|
+
|
|
65
69
|
If you use the [MCP Client](https://marketplace.visualstudio.com/items?itemName=mcp-client.mcp-client) extension:
|
|
70
|
+
|
|
66
71
|
1. Open your `settings.json`.
|
|
67
72
|
2. Add the server configuration:
|
|
73
|
+
|
|
68
74
|
```json
|
|
69
75
|
"mcp.servers": {
|
|
70
76
|
"notebooklm": {
|
|
@@ -90,64 +96,70 @@ npx @m4ykeldev/notebooklm-mcp auth --show-tokens
|
|
|
90
96
|
|
|
91
97
|
### Notebooks
|
|
92
98
|
|
|
93
|
-
| Tool
|
|
94
|
-
|
|
95
|
-
| `notebook_list`
|
|
96
|
-
| `notebook_create`
|
|
97
|
-
| `notebook_get`
|
|
99
|
+
| Tool | Description |
|
|
100
|
+
| ------------------- | ----------------------------------------- |
|
|
101
|
+
| `notebook_list` | List all notebooks with metadata |
|
|
102
|
+
| `notebook_create` | Create a new notebook |
|
|
103
|
+
| `notebook_get` | Get details of a specific notebook |
|
|
98
104
|
| `notebook_describe` | AI-generated summary of notebook contents |
|
|
99
|
-
| `notebook_rename`
|
|
100
|
-
| `notebook_delete`
|
|
105
|
+
| `notebook_rename` | Rename a notebook |
|
|
106
|
+
| `notebook_delete` | Delete a notebook (requires confirmation) |
|
|
101
107
|
|
|
102
108
|
### Sources
|
|
103
109
|
|
|
104
|
-
| Tool
|
|
105
|
-
|
|
106
|
-
| `notebook_add_url`
|
|
107
|
-
| `notebook_add_text`
|
|
108
|
-
| `notebook_add_drive` | Add a Google Drive document as a source
|
|
109
|
-
| `source_describe`
|
|
110
|
-
| `source_get_content` | Raw text content of a source
|
|
111
|
-
| `source_list_drive`
|
|
112
|
-
| `source_sync_drive`
|
|
113
|
-
| `source_delete`
|
|
110
|
+
| Tool | Description |
|
|
111
|
+
| -------------------- | ------------------------------------------------ |
|
|
112
|
+
| `notebook_add_url` | Add a URL or YouTube video as a source |
|
|
113
|
+
| `notebook_add_text` | Add pasted text as a source |
|
|
114
|
+
| `notebook_add_drive` | Add a Google Drive document as a source |
|
|
115
|
+
| `source_describe` | AI summary and keywords for a source |
|
|
116
|
+
| `source_get_content` | Raw text content of a source |
|
|
117
|
+
| `source_list_drive` | List sources with Drive freshness status |
|
|
118
|
+
| `source_sync_drive` | Sync stale Drive sources (requires confirmation) |
|
|
119
|
+
| `source_delete` | Delete a source (requires confirmation) |
|
|
114
120
|
|
|
115
121
|
### Query & Chat
|
|
116
122
|
|
|
117
|
-
| Tool
|
|
118
|
-
|
|
123
|
+
| Tool | Description |
|
|
124
|
+
| ---------------- | ------------------------------------ |
|
|
119
125
|
| `notebook_query` | Ask questions about notebook sources |
|
|
120
|
-
| `chat_configure` | Set chat goal and response length
|
|
126
|
+
| `chat_configure` | Set chat goal and response length |
|
|
121
127
|
|
|
122
128
|
### Research
|
|
123
129
|
|
|
124
|
-
| Tool
|
|
125
|
-
|
|
126
|
-
| `research_start`
|
|
127
|
-
| `research_status` | Check research task progress
|
|
130
|
+
| Tool | Description |
|
|
131
|
+
| ----------------- | --------------------------------------- |
|
|
132
|
+
| `research_start` | Start a web or Drive research task |
|
|
133
|
+
| `research_status` | Check research task progress |
|
|
128
134
|
| `research_import` | Import discovered sources from research |
|
|
129
135
|
|
|
130
136
|
### Studio — Content Generation
|
|
131
137
|
|
|
132
|
-
| Tool
|
|
133
|
-
|
|
134
|
-
| `audio_overview_create` | Generate an audio podcast
|
|
135
|
-
| `video_overview_create` | Generate a video summary
|
|
136
|
-
| `infographic_create`
|
|
137
|
-
| `slide_deck_create`
|
|
138
|
-
| `report_create`
|
|
139
|
-
| `flashcards_create`
|
|
140
|
-
| `quiz_create`
|
|
141
|
-
| `data_table_create`
|
|
142
|
-
| `mind_map_create`
|
|
143
|
-
| `studio_status`
|
|
144
|
-
| `studio_delete`
|
|
138
|
+
| Tool | Description |
|
|
139
|
+
| ----------------------- | ---------------------------------------------------- |
|
|
140
|
+
| `audio_overview_create` | Generate an audio podcast |
|
|
141
|
+
| `video_overview_create` | Generate a video summary |
|
|
142
|
+
| `infographic_create` | Generate an infographic |
|
|
143
|
+
| `slide_deck_create` | Generate a slide presentation |
|
|
144
|
+
| `report_create` | Generate a report (briefing, study guide, blog post) |
|
|
145
|
+
| `flashcards_create` | Generate study flashcards |
|
|
146
|
+
| `quiz_create` | Generate a quiz |
|
|
147
|
+
| `data_table_create` | Generate a data table |
|
|
148
|
+
| `mind_map_create` | Generate and save a mind map |
|
|
149
|
+
| `studio_status` | Check generation status and download URLs |
|
|
150
|
+
| `studio_delete` | Delete a studio artifact (requires confirmation) |
|
|
151
|
+
|
|
152
|
+
### Authentication
|
|
153
|
+
|
|
154
|
+
| Tool | Description |
|
|
155
|
+
| -------------- | -------------------------------------------------- |
|
|
156
|
+
| `refresh_auth` | Reload authentication tokens equires confirmation) |
|
|
145
157
|
|
|
146
158
|
### Authentication
|
|
147
159
|
|
|
148
|
-
| Tool
|
|
149
|
-
|
|
150
|
-
| `refresh_auth`
|
|
160
|
+
| Tool | Description |
|
|
161
|
+
| ------------------ | ------------------------------------ |
|
|
162
|
+
| `refresh_auth` | Reload authentication tokens |
|
|
151
163
|
| `save_auth_tokens` | Manually save authentication cookies |
|
|
152
164
|
|
|
153
165
|
## CLI Reference
|