How do you get the machine name of the current computer in MySQL?

e.g. KevinPC.

In MSSQL, I could use:
Code:
CONVERT(varchar(200), SERVERPROPERTY('MachineName'))
to get a string representing the name of the current computer but this does not work in MySQL.