-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathserver.py
More file actions
745 lines (664 loc) · 26.4 KB
/
Copy pathserver.py
File metadata and controls
745 lines (664 loc) · 26.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
import asyncio
import json
import logging
import os
import time
import uuid
from types import SimpleNamespace
from typing import Any, Literal
from fastmcp import Context, FastMCP
from fastmcp.exceptions import ToolError
from fastmcp.server.lifespan import lifespan
from fastmcp.server.middleware import Middleware
from claude_teams import messaging, opencode_client, tasks, teams
from claude_teams.models import (
COLOR_PALETTE,
InboxMessage,
SendMessageResult,
ShutdownApproved,
SpawnResult,
TeammateMember,
)
from claude_teams.opencode_client import OpenCodeAPIError
from claude_teams.spawner import (
discover_harness_binary,
discover_opencode_models,
kill_tmux_pane,
spawn_teammate,
use_tmux_windows,
)
logger = logging.getLogger(__name__)
KNOWN_CLIENTS: dict[str, str] = {
"claude-code": "claude",
"claude": "claude",
"opencode": "opencode",
}
# NOTE(victor): Mutated by both app_lifespan and HarnessDetectionMiddleware.
# Safe under stdio (single session). Racy under SSE/streamable HTTP.
#
# more context:
# app_lifespan yields _lifespan_state
# -> _lifespan_manager stores as self._lifespan_result (same ref)
# -> _lifespan_proxy yields self._lifespan_result
# -> ctx.lifespan_context in tool handlers returns it
# All references point to the same dict. Middleware mutations propagate.
_lifespan_state: dict[str, Any] = {}
_spawn_tool: Any = None
_VALID_BACKENDS = frozenset(KNOWN_CLIENTS.values())
def _parse_backends_env(raw: str) -> list[str]:
if not raw:
return []
return list(dict.fromkeys(b.strip() for b in raw.split(",") if b.strip() and b.strip() in _VALID_BACKENDS))
_SPAWN_TOOL_BASE_DESCRIPTION = (
"Spawn a new teammate in a tmux {target}. The teammate receives its initial "
"prompt via inbox and begins working autonomously. Names must be unique "
"within the team."
)
def _build_spawn_description(
claude_binary: str | None,
opencode_binary: str | None,
opencode_models: list[str],
opencode_server_url: str | None = None,
opencode_agents: list[dict] | None = None,
enabled_backends: list[str] | None = None,
) -> str:
tmux_target = "window" if use_tmux_windows() else "pane"
parts = [_SPAWN_TOOL_BASE_DESCRIPTION.format(target=tmux_target)]
backends = []
show_claude = claude_binary is not None
show_opencode = opencode_binary is not None and opencode_server_url is not None
if enabled_backends is not None:
show_claude = show_claude and "claude" in enabled_backends
show_opencode = show_opencode and "opencode" in enabled_backends
if show_claude:
backends.append("'claude' (default, models: sonnet, opus, haiku)")
if show_opencode:
model_list = (
", ".join(opencode_models) if opencode_models else "none discovered"
)
backends.append(f"'opencode' (models: {model_list})")
if backends:
parts.append(f"Available backends: {'; '.join(backends)}.")
if show_opencode and opencode_agents:
agent_lines = [f" - {a['name']}: {a['description']}" for a in opencode_agents]
parts.append(
"Available opencode agents (pass as subagent_type when backend_type='opencode'):\n"
+ "\n".join(agent_lines)
)
return " ".join(parts)
def _update_spawn_tool(tool, enabled: list[str], state: dict[str, Any]) -> None:
tool.parameters["properties"]["backend_type"]["enum"] = list(enabled)
if enabled:
tool.parameters["properties"]["backend_type"]["default"] = enabled[0]
tool.description = _build_spawn_description(
state.get("claude_binary"),
state.get("opencode_binary"),
state.get("opencode_models", []),
state.get("opencode_server_url"),
state.get("opencode_agents"),
enabled_backends=enabled,
)
@lifespan
async def app_lifespan(server):
global _spawn_tool
claude_binary = discover_harness_binary("claude")
opencode_binary = discover_harness_binary("opencode")
if not claude_binary and not opencode_binary:
raise FileNotFoundError(
"No coding agent binary found on PATH. "
"Install Claude Code ('claude') or OpenCode ('opencode')."
)
opencode_server_url = os.environ.get("OPENCODE_SERVER_URL")
opencode_models: list[str] = []
opencode_agents: list[dict] = []
if opencode_binary:
opencode_models = discover_opencode_models(opencode_binary)
if opencode_server_url:
try:
opencode_agents = opencode_client.list_agents(opencode_server_url)
except opencode_client.OpenCodeAPIError:
logger.warning(
"Failed to fetch opencode agents from %s", opencode_server_url
)
enabled_backends = _parse_backends_env(os.environ.get("CLAUDE_TEAMS_BACKENDS", ""))
if "opencode" in enabled_backends and not opencode_server_url:
enabled_backends.remove("opencode")
tool = await mcp.get_tool("spawn_teammate")
_spawn_tool = tool
if enabled_backends:
_update_spawn_tool(tool, enabled_backends, {
"claude_binary": claude_binary,
"opencode_binary": opencode_binary,
"opencode_models": opencode_models,
"opencode_server_url": opencode_server_url,
"opencode_agents": opencode_agents,
})
else:
tool.description = _build_spawn_description(
claude_binary, opencode_binary, opencode_models,
opencode_server_url, opencode_agents,
)
session_id = str(uuid.uuid4())
_lifespan_state.clear()
_lifespan_state.update({
"claude_binary": claude_binary,
"opencode_binary": opencode_binary,
"opencode_server_url": opencode_server_url,
"opencode_agents": opencode_agents,
"opencode_models": opencode_models,
"enabled_backends": enabled_backends,
"session_id": session_id,
"active_team": None,
"client_name": "unknown",
"client_version": "unknown",
})
yield _lifespan_state
class HarnessDetectionMiddleware(Middleware):
# NOTE(victor): ctx.lifespan_context returns {} during on_initialize because
# RequestContext isn't established yet. Client info is accessible from tool
# handlers via ctx.session.client_params.clientInfo (stored by the MCP SDK).
async def on_initialize(self, context, call_next):
_unknown = SimpleNamespace(name="unknown", version="unknown")
client_info = context.message.params.clientInfo or _unknown
client_name = client_info.name
client_version = client_info.version
result = await call_next(context)
logger.info("MCP client connected: %s v%s", client_name, client_version)
native_backend = KNOWN_CLIENTS.get(client_name)
enabled = _lifespan_state.get("enabled_backends", [])
if native_backend and native_backend not in enabled:
if native_backend == "claude" or _lifespan_state.get("opencode_server_url"):
enabled.append(native_backend)
if not enabled:
if _lifespan_state.get("claude_binary"):
enabled.append("claude")
if _lifespan_state.get("opencode_binary") and _lifespan_state.get("opencode_server_url"):
enabled.append("opencode")
_lifespan_state["enabled_backends"] = enabled
_lifespan_state["client_name"] = client_name
_lifespan_state["client_version"] = client_version
if _spawn_tool:
_update_spawn_tool(_spawn_tool, enabled, _lifespan_state)
return result
mcp = FastMCP(
name="claude-teams",
instructions=(
"MCP server for orchestrating Claude Code agent teams. "
"Manages team creation, teammate spawning, messaging, and task tracking."
),
lifespan=app_lifespan,
)
mcp.add_middleware(HarnessDetectionMiddleware())
def _get_lifespan(ctx: Context) -> dict[str, Any]:
return ctx.lifespan_context
@mcp.tool
def team_create(
team_name: str,
ctx: Context,
description: str = "",
) -> dict:
"""Create a new agent team. Sets up team config and task directories under ~/.claude/.
One team per server session. Team names must be filesystem-safe
(letters, numbers, hyphens, underscores)."""
ls = _get_lifespan(ctx)
if ls.get("active_team"):
raise ToolError(
f"Session already has active team: {ls['active_team']}. One team per session."
)
result = teams.create_team(
name=team_name, session_id=ls["session_id"], description=description
)
ls["active_team"] = team_name
return result.model_dump()
@mcp.tool
def team_delete(team_name: str, ctx: Context) -> dict:
"""Delete a team and all its data. Fails if any teammates are still active.
Removes both team config and task directories."""
try:
result = teams.delete_team(team_name)
except (RuntimeError, FileNotFoundError) as e:
raise ToolError(str(e))
_get_lifespan(ctx)["active_team"] = None
return result.model_dump()
@mcp.tool(name="spawn_teammate")
def spawn_teammate_tool(
team_name: str,
name: str,
prompt: str,
ctx: Context,
model: str = "sonnet",
subagent_type: str = "general-purpose",
plan_mode_required: bool = False,
backend_type: Literal["claude", "opencode"] = "claude",
) -> dict:
"""Spawn a new teammate in tmux. Description is dynamically updated
at startup with available backends and models."""
ls = _get_lifespan(ctx)
enabled = ls.get("enabled_backends", [])
if enabled and backend_type not in enabled:
raise ToolError(f"Backend {backend_type!r} is not enabled. Enabled: {enabled}")
opencode_agent = None
if backend_type == "opencode":
known = {a["name"] for a in ls.get("opencode_agents", [])}
opencode_agent = subagent_type if subagent_type in known else "build"
try:
member = spawn_teammate(
team_name=team_name,
name=name,
prompt=prompt,
claude_binary=ls["claude_binary"],
lead_session_id=ls["session_id"],
model=model,
subagent_type=subagent_type,
plan_mode_required=plan_mode_required,
backend_type=backend_type,
opencode_binary=ls["opencode_binary"],
opencode_server_url=ls["opencode_server_url"],
opencode_agent=opencode_agent,
)
except (ValueError, OpenCodeAPIError) as e:
raise ToolError(str(e))
return SpawnResult(
agent_id=member.agent_id,
name=member.name,
team_name=team_name,
).model_dump()
def _push_to_opencode_session(
server_url: str, member: TeammateMember, text: str
) -> None:
"""Push a message into an opencode teammate's session via the HTTP API."""
if (
member.backend_type != "opencode"
or not member.opencode_session_id
or not server_url
):
return
try:
opencode_client.send_prompt_async(server_url, member.opencode_session_id, text)
except OpenCodeAPIError:
logger.warning(
"Failed to push message to opencode session %s", member.opencode_session_id
)
def _cleanup_opencode_session(server_url: str | None, session_id: str | None) -> None:
"""Abort and delete an opencode session. Best-effort, errors are logged."""
if not server_url or not session_id:
return
try:
opencode_client.abort_session(server_url, session_id)
except OpenCodeAPIError:
logger.warning("Failed to abort opencode session %s", session_id)
try:
opencode_client.delete_session(server_url, session_id)
except OpenCodeAPIError:
logger.warning("Failed to delete opencode session %s", session_id)
def _find_teammate(team_name: str, name: str) -> TeammateMember | None:
config = teams.read_config(team_name)
for m in config.members:
if isinstance(m, TeammateMember) and m.name == name:
return m
return None
@mcp.tool
def send_message(
team_name: str,
type: Literal[
"message",
"broadcast",
"shutdown_request",
"shutdown_response",
"plan_approval_response",
],
ctx: Context,
recipient: str = "",
content: str = "",
summary: str = "",
request_id: str = "",
approve: bool | None = None,
sender: str = "team-lead",
) -> dict:
"""Send a message to a teammate or respond to a protocol request.
Type 'message' sends a direct message (requires recipient, summary).
Type 'broadcast' sends to all teammates (requires summary).
Type 'shutdown_request' asks a teammate to shut down (requires recipient; content used as reason).
Type 'shutdown_response' responds to a shutdown request (requires sender, request_id, approve).
Type 'plan_approval_response' responds to a plan approval request (requires recipient, request_id, approve)."""
oc_url = _get_lifespan(ctx).get("opencode_server_url")
try:
teams.read_config(team_name)
except FileNotFoundError:
raise ToolError(f"Team {team_name!r} not found")
if type == "message":
if not content:
raise ToolError("Message content must not be empty")
if not summary:
raise ToolError("Message summary must not be empty")
if not recipient:
raise ToolError("Message recipient must not be empty")
config = teams.read_config(team_name)
member_names = {m.name for m in config.members}
if sender not in member_names:
raise ToolError(f"Sender {sender!r} is not a member of team {team_name!r}")
if recipient not in member_names:
raise ToolError(
f"Recipient {recipient!r} is not a member of team {team_name!r}"
)
if sender == recipient:
raise ToolError("Cannot send a message to yourself")
if sender != "team-lead" and recipient != "team-lead":
raise ToolError("Teammates can only send direct messages to team-lead")
target_color = None
target_member = None
for m in config.members:
if m.name == recipient and isinstance(m, TeammateMember):
target_color = m.color
target_member = m
break
messaging.send_plain_message(
team_name,
sender,
recipient,
content,
summary=summary,
color=target_color,
)
if target_member and oc_url:
_push_to_opencode_session(oc_url, target_member, content)
return SendMessageResult(
success=True,
message=f"Message sent to {recipient}",
routing={
"sender": sender,
"target": recipient,
"targetColor": target_color,
"summary": summary,
"content": content,
},
).model_dump(exclude_none=True)
elif type == "broadcast":
if sender != "team-lead":
raise ToolError("Only team-lead can send broadcasts")
if not summary:
raise ToolError("Broadcast summary must not be empty")
config = teams.read_config(team_name)
count = 0
for m in config.members:
if isinstance(m, TeammateMember):
messaging.send_plain_message(
team_name,
"team-lead",
m.name,
content,
summary=summary,
color=None,
)
if oc_url:
_push_to_opencode_session(oc_url, m, content)
count += 1
return SendMessageResult(
success=True,
message=f"Broadcast sent to {count} teammate(s)",
).model_dump(exclude_none=True)
elif type == "shutdown_request":
if not recipient:
raise ToolError("Shutdown request recipient must not be empty")
if recipient == "team-lead":
raise ToolError("Cannot send shutdown request to team-lead")
config = teams.read_config(team_name)
member_names = {m.name for m in config.members}
if recipient not in member_names:
raise ToolError(
f"Recipient {recipient!r} is not a member of team {team_name!r}"
)
req_id = messaging.send_shutdown_request(team_name, recipient, reason=content)
target_member = _find_teammate(team_name, recipient)
if target_member and oc_url:
shutdown_request_payload = json.dumps(
{"type": "shutdown_request", "requestId": req_id, "reason": content}
)
_push_to_opencode_session(
oc_url,
target_member,
shutdown_request_payload,
)
return SendMessageResult(
success=True,
message=f"Shutdown request sent to {recipient}",
request_id=req_id,
target=recipient,
).model_dump(exclude_none=True)
elif type == "shutdown_response":
config = teams.read_config(team_name)
member = None
for m in config.members:
if isinstance(m, TeammateMember) and m.name == sender:
member = m
break
if member is None:
raise ToolError(
f"Sender {sender!r} is not a teammate in team {team_name!r}"
)
if approve:
pane_id = member.tmux_pane_id
backend = member.backend_type
oc_session = member.opencode_session_id
payload = ShutdownApproved(
request_id=request_id,
from_=sender,
timestamp=messaging.now_iso(),
pane_id=pane_id,
backend_type=backend,
session_id=oc_session,
)
messaging.send_structured_message(team_name, sender, "team-lead", payload)
return SendMessageResult(
success=True,
message=f"Shutdown approved for request {request_id}",
).model_dump(exclude_none=True)
else:
messaging.send_plain_message(
team_name,
sender,
"team-lead",
content or "Shutdown rejected",
summary="shutdown_rejected",
)
return SendMessageResult(
success=True,
message=f"Shutdown rejected for request {request_id}",
).model_dump(exclude_none=True)
elif type == "plan_approval_response":
if not recipient:
raise ToolError("Plan approval recipient must not be empty")
config = teams.read_config(team_name)
member_names = {m.name for m in config.members}
if recipient not in member_names:
raise ToolError(
f"Recipient {recipient!r} is not a member of team {team_name!r}"
)
if approve:
messaging.send_plain_message(
team_name,
sender,
recipient,
'{"type":"plan_approval","approved":true}',
summary="plan_approved",
)
else:
messaging.send_plain_message(
team_name,
sender,
recipient,
content or "Plan rejected",
summary="plan_rejected",
)
return SendMessageResult(
success=True,
message=f"Plan {'approved' if approve else 'rejected'} for {recipient}",
).model_dump(exclude_none=True)
raise ToolError(f"Unknown message type: {type}")
@mcp.tool
def task_create(
team_name: str,
subject: str,
description: str,
active_form: str = "",
metadata: dict | None = None,
) -> dict:
"""Create a new task for the team. Tasks are auto-assigned incrementing IDs.
Optional metadata dict is stored alongside the task."""
try:
task = tasks.create_task(team_name, subject, description, active_form, metadata)
except ValueError as e:
raise ToolError(str(e))
return task.model_dump(by_alias=True, exclude_none=True)
@mcp.tool
def task_update(
team_name: str,
task_id: str,
status: Literal["pending", "in_progress", "completed", "deleted"] | None = None,
owner: str | None = None,
subject: str | None = None,
description: str | None = None,
active_form: str | None = None,
add_blocks: list[str] | None = None,
add_blocked_by: list[str] | None = None,
metadata: dict | None = None,
) -> dict:
"""Update a task's fields. Setting owner auto-notifies the assignee via
inbox. Setting status to 'deleted' removes the task file from disk.
Metadata keys are merged into existing metadata (set a key to null to delete it)."""
if owner is not None:
try:
config = teams.read_config(team_name)
except FileNotFoundError:
raise ToolError(f"Team {team_name!r} not found")
member_names = {m.name for m in config.members}
if owner not in member_names:
raise ToolError(f"Owner {owner!r} is not a member of team {team_name!r}")
try:
task = tasks.update_task(
team_name,
task_id,
status=status,
owner=owner,
subject=subject,
description=description,
active_form=active_form,
add_blocks=add_blocks,
add_blocked_by=add_blocked_by,
metadata=metadata,
)
except FileNotFoundError:
raise ToolError(f"Task {task_id!r} not found in team {team_name!r}")
except ValueError as e:
raise ToolError(str(e))
if owner is not None and task.owner is not None and task.status != "deleted":
messaging.send_task_assignment(team_name, task, assigned_by="team-lead")
return task.model_dump(by_alias=True, exclude_none=True)
@mcp.tool
def task_list(team_name: str) -> list[dict]:
"""List all tasks for a team with their current status and assignments."""
try:
result = tasks.list_tasks(team_name)
except ValueError as e:
raise ToolError(str(e))
return [t.model_dump(by_alias=True, exclude_none=True) for t in result]
@mcp.tool
def task_get(team_name: str, task_id: str) -> dict:
"""Get full details of a specific task by ID."""
try:
task = tasks.get_task(team_name, task_id)
except FileNotFoundError:
raise ToolError(f"Task {task_id!r} not found in team {team_name!r}")
return task.model_dump(by_alias=True, exclude_none=True)
@mcp.tool
def read_inbox(
team_name: str,
agent_name: str,
unread_only: bool = False,
mark_as_read: bool = True,
) -> list[dict]:
"""Read messages from an agent's inbox. Returns all messages by default.
Set unread_only=True to get only unprocessed messages."""
try:
config = teams.read_config(team_name)
except FileNotFoundError:
raise ToolError(f"Team {team_name!r} not found")
member_names = {m.name for m in config.members}
if agent_name not in member_names:
raise ToolError(f"Agent {agent_name!r} is not a member of team {team_name!r}")
msgs = messaging.read_inbox(
team_name, agent_name, unread_only=unread_only, mark_as_read=mark_as_read
)
return [m.model_dump(by_alias=True, exclude_none=True) for m in msgs]
@mcp.tool
def read_config(team_name: str) -> dict:
"""Read the current team configuration including all members."""
try:
config = teams.read_config(team_name)
except FileNotFoundError:
raise ToolError(f"Team {team_name!r} not found")
return config.model_dump(by_alias=True)
@mcp.tool
def force_kill_teammate(team_name: str, agent_name: str, ctx: Context) -> dict:
"""Forcibly kill a teammate's tmux target. Use when graceful shutdown via
send_message(type='shutdown_request') is not possible or not responding.
Kills the tmux pane/window, removes member from config, and resets their tasks."""
oc_url = _get_lifespan(ctx).get("opencode_server_url")
config = teams.read_config(team_name)
member = None
for m in config.members:
if isinstance(m, TeammateMember) and m.name == agent_name:
member = m
break
if member is None:
raise ToolError(f"Teammate {agent_name!r} not found in team {team_name!r}")
if member.backend_type == "opencode" and member.opencode_session_id:
_cleanup_opencode_session(oc_url, member.opencode_session_id)
if member.tmux_pane_id:
kill_tmux_pane(member.tmux_pane_id)
teams.remove_member(team_name, agent_name)
tasks.reset_owner_tasks(team_name, agent_name)
return {"success": True, "message": f"{agent_name} has been stopped."}
@mcp.tool
async def poll_inbox(
team_name: str,
agent_name: str,
timeout_ms: int = 30000,
) -> list[dict]:
"""Poll an agent's inbox for new unread messages, waiting up to timeout_ms.
Returns unread messages and marks them as read. Convenience tool for MCP
clients that cannot watch the filesystem."""
msgs = messaging.read_inbox(
team_name, agent_name, unread_only=True, mark_as_read=True
)
if msgs:
return [m.model_dump(by_alias=True, exclude_none=True) for m in msgs]
deadline = time.time() + timeout_ms / 1000.0
while time.time() < deadline:
await asyncio.sleep(0.5)
msgs = messaging.read_inbox(
team_name, agent_name, unread_only=True, mark_as_read=True
)
if msgs:
return [m.model_dump(by_alias=True, exclude_none=True) for m in msgs]
return []
@mcp.tool
def process_shutdown_approved(team_name: str, agent_name: str, ctx: Context) -> dict:
"""Process a teammate's shutdown by removing them from config and resetting
their tasks. Call this after confirming shutdown_approved in the lead inbox."""
if agent_name == "team-lead":
raise ToolError("Cannot process shutdown for team-lead")
oc_url = _get_lifespan(ctx).get("opencode_server_url")
member = _find_teammate(team_name, agent_name)
if member is None:
raise ToolError(f"Teammate {agent_name!r} not found in team {team_name!r}")
if member.backend_type == "opencode" and member.opencode_session_id:
_cleanup_opencode_session(oc_url, member.opencode_session_id)
teams.remove_member(team_name, agent_name)
tasks.reset_owner_tasks(team_name, agent_name)
return {"success": True, "message": f"{agent_name} removed from team."}
def main():
logging.basicConfig(level=logging.INFO, format="%(levelname)s %(name)s: %(message)s")
mcp.run()
if __name__ == "__main__":
main()