get_notebook_mcp_server 1.1.0 → 1.1.1

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.
Files changed (2) hide show
  1. package/index.js +5 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -160,6 +160,11 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
160
160
  params.topic_ids = [kb.config.topic_id];
161
161
  }
162
162
 
163
+ // Set default value for deep_seek if not provided
164
+ if (params.deep_seek === undefined) {
165
+ params.deep_seek = false;
166
+ }
167
+
163
168
  const response = await client.searchKnowledge(params);
164
169
 
165
170
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get_notebook_mcp_server",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "MCP server for Get Notes API integration with multi-knowledge base support",
5
5
  "type": "module",
6
6
  "main": "index.js",