@gainable.dev/mcp-server 0.1.2 → 0.1.3
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/index.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -20,6 +20,9 @@ const userConfig = UserConfigSchema.parse({
|
|
|
20
20
|
// 24h idle timeout — sessions are long-lived (Weavy agent conversations)
|
|
21
21
|
idleTimeoutMs: 86400000,
|
|
22
22
|
notificationTimeoutMs: 82800000,
|
|
23
|
+
// Weavy manages session IDs externally — accept any session ID without requiring initialize
|
|
24
|
+
// This prevents 404 "session not found" after sidecar restarts
|
|
25
|
+
externallyManagedSessions: true,
|
|
23
26
|
disabledTools: [
|
|
24
27
|
'drop-database', 'drop-collection', 'create-collection',
|
|
25
28
|
'list-databases', 'rename-collection', 'drop-index',
|
package/package.json
CHANGED