Для будущих поколений:
(function() {
tinymce.PluginManager.add('button', function( editor, url ) {
editor.addButton( 'button', {
text: 'Кнопка',
classes: 'add-class', //можно добавить классы
type: 'button',
icon: false,
onclick: function(e) {
jQuery(document).ready(function($) {
$('.add-class').on('click', function(){
$.ajax({
url: 'http://site.ru/tool.php',
success: function(data){
$('#info').html(data);
}
});
})
});
}
});
});
})();