Disable optional builtin servers
Just to reduce problem surface
This commit is contained in:
parent
bb64267c4d
commit
c96cc26939
|
|
@ -42,12 +42,14 @@ class MultiServerManager:
|
|||
"builtin:memory": MCPServerConfig(
|
||||
command=["python3", str(base_path / "memory" / "memory_server.py")],
|
||||
name="memory",
|
||||
description="Persistent memory and context management"
|
||||
description="Persistent memory and context management",
|
||||
enabled=False # Disabled by default, tmux is preferred
|
||||
),
|
||||
"builtin:patterns": MCPServerConfig(
|
||||
command=["python3", str(base_path / "pattern_manager" / "pattern_server.py")],
|
||||
name="patterns",
|
||||
description="Auto-response pattern management"
|
||||
description="Auto-response pattern management",
|
||||
enabled=False # Disabled by default, tmux is preferred
|
||||
),
|
||||
"builtin:onboarding": MCPServerConfig(
|
||||
command=["python3", str(base_path / "onboarding" / "onboarding_server.py")],
|
||||
|
|
@ -169,4 +171,4 @@ class MultiServerManager:
|
|||
except Exception as e:
|
||||
self.logger.error(f"Error stopping server {name}: {e}")
|
||||
|
||||
self.servers.clear()
|
||||
self.servers.clear()
|
||||
|
|
|
|||
Loading…
Reference in New Issue