Skip to content
Open
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
12 changes: 12 additions & 0 deletions desktop/src-tauri/src/managed_agents/runtime/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,18 @@ fn codex_has_mcp_command() {
assert_eq!(p.mcp_command, Some("buzz-dev-mcp"));
}

#[test]
fn claude_has_mcp_command() {
let p = known_acp_runtime("claude-agent-acp").expect("should resolve");
assert!(!p.mcp_hooks, "claude does not handle MCP_HOOK_SERVERS");
assert_eq!(
p.mcp_command,
Some("buzz-dev-mcp"),
"Claude Code needs the MCP server wired through session/new \
because it does not support native config"
);
}

#[test]
fn goose_has_no_mcp_hooks() {
let p = known_acp_runtime("goose").expect("should resolve");
Expand Down