Skip to content

Commit 366aa20

Browse files
committed
port over the tests
1 parent cd6e0ba commit 366aa20

File tree

2 files changed

+1512
-9
lines changed

2 files changed

+1512
-9
lines changed

crates/goose-cli/src/commands/mcp.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,7 @@ pub async fn run_server(name: &str) -> Result<()> {
2626
tracing::info!("Starting MCP server");
2727

2828
let router: Option<Box<dyn BoundedService>> = match name {
29-
"developer" => {
30-
// TODO: Future integration with rmcp DeveloperServer
31-
// The rmcp DeveloperServer provides better tools (text_editor, screen_capture, list_windows)
32-
// but requires an adapter to work with the existing BoundedService infrastructure
33-
// For now, fall back to the old DeveloperRouter
34-
Some(Box::new(RouterService(DeveloperRouter::new())))
35-
}
29+
"developer" => Some(Box::new(RouterService(DeveloperRouter::new()))),
3630
"computercontroller" => Some(Box::new(RouterService(ComputerControllerRouter::new()))),
3731
"memory" => Some(Box::new(RouterService(MemoryRouter::new()))),
3832
"tutorial" => Some(Box::new(RouterService(TutorialRouter::new()))),

0 commit comments

Comments
 (0)