Add/remove tools from tinymce

Try this and adjust the tools as you wish:

$settings = array(
  'text_area_name'=> 'the_data',
  'textarea_rows' => 27,
  'teeny'         => false,
  'media_buttons' => true,
  'quicktags'     => true,
  'tinymce'       => array ( 
    'paste_as_text' => true,
    'toolbar1' => 'formatselect, bold, italic, underline, bullist, numlist, blockquote, alignleft, aligncenter, alignright',
    'toolbar2' => 'strikethrough, forecolor, pastetext, removeformat, charmap, link, unlink, redo, undo, wp_help, styleselect',
    'plugins' => 'charmap, colorpicker, hr, lists, media, paste, tabfocus, textcolor, fullscreen, wordpress, wpautoresize, wpeditimage, wpemoji, wpgallery, wplink, wpdialogs, wptextpattern, wpview'
    ),
);
wp_editor($initial_data, $id, $settings);

tech