Yes, it is possible to launch an app via adb shell making use of the monkey tool.
Using the command from this answer:
adb shell monkey -p app.package.name -c android.intent.category.LAUNCHER 1
This command simulates the app icon click, so the intent implicit intent LAUNCHER is delivered to the specific receiver declared in app manifest (MAIN)