File tree Expand file tree Collapse file tree 2 files changed +1512
-9
lines changed Expand file tree Collapse file tree 2 files changed +1512
-9
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,7 @@ pub async fn run_server(name: &str) -> Result<()> {
26
26
tracing:: info!( "Starting MCP server" ) ;
27
27
28
28
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 ( ) ) ) ) ,
36
30
"computercontroller" => Some ( Box :: new ( RouterService ( ComputerControllerRouter :: new ( ) ) ) ) ,
37
31
"memory" => Some ( Box :: new ( RouterService ( MemoryRouter :: new ( ) ) ) ) ,
38
32
"tutorial" => Some ( Box :: new ( RouterService ( TutorialRouter :: new ( ) ) ) ) ,
You can’t perform that action at this time.
0 commit comments