clay-server 2.27.0-beta.2 → 2.27.0-beta.4
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/lib/project.js +1 -0
- package/lib/sdk-bridge.js +1 -0
- package/package.json +1 -1
package/lib/project.js
CHANGED
|
@@ -894,6 +894,7 @@ function createProjectContext(opts) {
|
|
|
894
894
|
_loop: _loop,
|
|
895
895
|
browserState: { _browserTabList: _browserTabList, _extensionWs: _extensionWs, pendingExtensionRequests: pendingExtensionRequests },
|
|
896
896
|
sendExtensionCommandAny: sendExtensionCommandAny,
|
|
897
|
+
requestTabContext: requestTabContext,
|
|
897
898
|
scheduleMessage: scheduleMessage,
|
|
898
899
|
cancelScheduledMessage: cancelScheduledMessage,
|
|
899
900
|
loadContextSources: loadContextSources,
|
package/lib/sdk-bridge.js
CHANGED
|
@@ -2386,6 +2386,7 @@ function createSDKBridge(opts) {
|
|
|
2386
2386
|
},
|
|
2387
2387
|
};
|
|
2388
2388
|
if (opts.model) mentionQueryOptions.model = opts.model;
|
|
2389
|
+
if (mcpServers) mentionQueryOptions.mcpServers = mcpServers;
|
|
2389
2390
|
query = sdk.query({
|
|
2390
2391
|
prompt: mq,
|
|
2391
2392
|
options: mentionQueryOptions,
|