chore(mcp): convert computercontroller server to use the rust sdk (#4772)

This commit is contained in:
Alex Hancock
2025-09-24 10:03:00 -04:00
committed by GitHub
parent 0d25cea181
commit dba0f4eaef
9 changed files with 983 additions and 1192 deletions
+2 -1
View File
@@ -36,7 +36,8 @@ async fn main() -> anyhow::Result<()> {
commands::agent::run().await?;
}
Commands::Mcp { name } => {
commands::mcp::run(name).await?;
logging::setup_logging(Some(&format!("mcp-{name}")))?;
goose_mcp::mcp_server_runner::run_mcp_server(name).await?;
}
}