Indeed, the point is that MySQL does have a way of telling you what the next value is going to be, but it does not reserve that value they way Oracle (and postgreSQL) do with nextval().
In MySQL, you can only get the value that will be used for the next insert in that table, not 'per connection'. Everyone who requests that value in that table will get the same answer, regardless of how many others have requested it.