Hi Jon,
To spawn an entity, you can use the jsp spawn command.
Type jsp spawn then press the TAB key to see a list of possible entities...
e.g. to spawn a cow at the player's current location...
/jsp spawn cow
If you want to spawn an entity using javascript...
/js var location = self.location
/js location.world.spawnEntity(location, org.bukkit.EntityType.ZOMBIE);
To teleport a player...
var TeleportCause = org.bukkit.event.player.TeleportEvent.TeleportCause;
var location = new org.bukkit.Location(world, x, y, z);
player.teleport( location, TeleportCause.PLUGIN );
Walter