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.
- package/index.js +5 -0
- 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 {
|