@@ -39,7 +39,7 @@ The root command dynamically selects behavior:
3939| ` internal/remote ` | SSH/SCP operations, remote codes installation, profile sync |
4040| ` internal/agent ` | Agent team management: daemon lifecycle, task execution, message passing, Claude subprocess orchestration |
4141| ` internal/stats ` | Cost tracking: JSONL session parsing, token aggregation, caching, time-range filtering |
42- | ` internal/mcp ` | MCP server exposing 42 tools over stdio transport (10 config + 24 agent + 4 stats + 4 workflow tools) |
42+ | ` internal/mcp ` | MCP server exposing 43 tools over stdio transport (10 config + 25 agent + 4 stats + 4 workflow tools) |
4343| ` internal/commands ` | Cobra command definitions (` cobra.go ` ) + implementations (` commands.go ` ) |
4444| ` internal/output ` | JSON mode wrapper (` output.JSONMode ` flag) |
4545| ` internal/ui ` | Styled CLI text output helpers |
@@ -115,13 +115,13 @@ PID tracking via `/tmp/codes-session-<id>.pid`. `RefreshStatus()` polls process
115115
116116### MCP Server (` internal/mcp ` )
117117
118- 42 tools registered via ` mcpsdk.AddTool() ` over stdio transport:
118+ 43 tools registered via ` mcpsdk.AddTool() ` over stdio transport:
119119
120120** Config tools (10):** ` list_projects ` , ` add_project ` , ` remove_project ` , ` list_profiles ` , ` switch_profile ` , ` get_project_info ` , ` list_remotes ` , ` add_remote ` , ` remove_remote ` , ` sync_remote `
121121
122122** Stats tools (4):** ` stats_summary ` , ` stats_by_project ` , ` stats_by_model ` , ` stats_refresh `
123123
124- ** Agent tools (24 ):** ` team_create ` , ` team_delete ` , ` team_list ` , ` team_get ` , ` team_status ` , ` team_start_all ` , ` team_stop_all ` , ` team_activity ` , ` agent_add ` , ` agent_remove ` , ` agent_list ` , ` agent_start ` , ` agent_stop ` , ` task_create ` , ` task_update ` , ` task_redirect ` , ` task_list ` , ` task_get ` , ` message_send ` , ` message_list ` , ` message_mark_read ` , ` test_sampling ` , ` team_watch ` , ` team_subscribe `
124+ ** Agent tools (25 ):** ` team_create ` , ` team_delete ` , ` team_list ` , ` team_get ` , ` team_status ` , ` team_start_all ` , ` team_stop_all ` , ` team_activity ` , ` agent_add ` , ` agent_remove ` , ` agent_list ` , ` agent_start ` , ` agent_stop ` , ` task_create ` , ` task_update ` , ` task_redirect ` , ` task_list ` , ` task_get ` , ` message_send ` , ` message_list ` , ` message_mark_read ` , ` test_sampling ` , ` test_progress ` , ` team_watch ` , ` team_subscribe `
125125
126126** Workflow tools (4):** ` workflow_list ` , ` workflow_get ` , ` workflow_run ` , ` workflow_create `
127127
0 commit comments