argument('handle'); assert(is_string($handle)); $server = $registrar->getLocalServer($handle); if ($server === null) { $this->components->error("MCP Server with name [{$handle}] not found. Did you register it using [Mcp::local()]?"); return static::FAILURE; } $server(); return static::SUCCESS; } /** * @return array> */ protected function getArguments(): array { return [ ['handle', InputArgument::REQUIRED, 'The handle of the MCP server to start.'], ]; } }