Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/bub-mcp-server/src/bub_mcp_server/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

class MCPServerChannel(Channel):
name = "mcp-server"
role = "lifecycle"
start_with_channels = True

def __init__(self, framework: BubFramework) -> None:
self.framework = framework
Expand Down
2 changes: 2 additions & 0 deletions packages/bub-mcp/src/bub_mcp/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ class MCPServerState:

class MCPChannel(Channel):
name = LIFECYCLE_CHANNEL_NAME
role = "lifecycle"
start_with_channels = True

def __init__(self) -> None:
self.settings = bub.ensure_config(MCPSettings)
Expand Down
2 changes: 2 additions & 0 deletions packages/bub-schedule/src/bub_schedule/channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

class ScheduleChannel(Channel):
name = "schedule"
role = "lifecycle"
start_with_channels = True

# Class-level runtime state (singleton per process)
_framework: BubFramework | None = None
Expand Down