As far as I know, MySQL does not support such a feature. Although PostgreSQL does, in the form of the LISTEN directive. That means that you could add an INSERT trigger that would simply call "NOTIFY your_event" -- in which case the application would be able to handle the insert event.
However, as you're using an inferior (🙂) database, I'm afraid that this is not possible.