notebooklm-mcp-server 1.0.5 → 1.0.6

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/dist/client.js CHANGED
@@ -3,8 +3,9 @@ import { BASE_URL, BATCH_EXECUTE_PATH, RPC_IDS, QUERY_PATH } from './constants.j
3
3
  import { v4 as uuidv4 } from 'uuid';
4
4
  import * as fs from 'fs';
5
5
  import * as path from 'path';
6
- // @ts-ignore
7
- import pdf from 'pdf-parse/lib/pdf-parse.js';
6
+ import { createRequire } from 'module';
7
+ const require = createRequire(import.meta.url);
8
+ const pdf = require('pdf-parse');
8
9
  export class AuthenticationError extends Error {
9
10
  constructor(message) {
10
11
  super(message);
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ const program = new Command();
5
5
  program
6
6
  .name('notebooklm-mcp-server')
7
7
  .description('NotebookLM MCP Server (Node.js)')
8
- .version('1.0.5');
8
+ .version('1.0.6');
9
9
  program
10
10
  .command('server')
11
11
  .description('Start the MCP server (default)')
package/dist/server.js CHANGED
@@ -6,7 +6,7 @@ import { AuthManager } from "./auth.js";
6
6
  import chalk from "chalk";
7
7
  const server = new Server({
8
8
  name: "notebooklm-mcp-server",
9
- version: "1.0.5",
9
+ version: "1.0.6",
10
10
  }, {
11
11
  capabilities: {
12
12
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notebooklm-mcp-server",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Node.js Model Context Protocol server for Google NotebookLM",
5
5
  "type": "module",
6
6
  "repository": {