How can I create custom right-click context menu items in macOS?

This is a bit old, but nothing is drastically different in 10.8:

http://hints.macworld.com/article.php?story=20100509134904820

This a simple Service for creating new files the currently-open folder in Finder, using AppleScript and Automator.

Start by launching Automator, and in the chooser that appears, select Service. This will open a new Automator window, set up to create a Service. In that window, do the following: Set the Service to receive selected folders in Finder (the two drop-down menus at the top of the work area on the right). This makes it easier to assign a keyboard shortcut to our service, which we'll do at the end.

Drag and drop the 'Run AppleScript' action (in the Utilities Library) into the work area on the right.

Paste in the following AppleScript, then click the Hammer icon (to compile the code):

on run {input, parameters}
  tell application "Finder"
    set currentPath to insertion location as text
    set x to POSIX path of currentPath
  end tell
  return x
end run

Drag and drop the 'Set value of a variable' action from the Utilities Library, and create a new variable called, for example, CurrentFolder. (Do this by clicking on the drop-down menu.)

Drag and drop the New Text File action from the Text library into the work area. Then drag CurrentFolder from the Variable panel at the bottom of the Automator window to the Where entry of the New Text File action. Click the Options button in the action, and click the 'Show this action when the workflow runs' box. This makes it possible to change the name and extension of the new file.

Save the service as 'Create New File,' or whatever you like. Test your new action using the Services menu in Finder, to make sure it works (select a folder, Control-click, and you should see your new Service at the bottom of the contextual menu).

On the Keyboard Shortcuts tab of the Keyboard System Preferences panel, select Services in the left-hand column, and your new service (it should be in the Files and Folders section) in the right-hand panel. Assign a keyboard shortcut to the new Service by double-clicking to the right of the Service's name.

Switch back to Automator and change the leftmost drop-down menu (at the top of the work area) to No Input, then save the Service again.


Terminal provides Services to open a new terminal window or tab with the current directory set to a folder selected in Finder.

You can enable these Services in

System Preferences > Keyboard > Shortcuts > Services

The services are named “New Terminal at Folder” and “New Terminal Tab at Folder”. Once enabled, they will appear in the Services submenu of the application menu (the one whose title is the name of the current application) and in the Services submenu of the contextual menu.


I too was searching for a way to customize the right-click menu in Finder. By default you can add Services and Open With... menu items, but those are stuck under a submenu and contain way too many items.

So, I created a Mac application that can customize the main context menu itself.


Service Station:

Mac App Store: https://apps.apple.com/us/app/service-station/id1503136033/

custom image items

Service Station allows you to add custom menu items on a per-filetype basis. So you can set up different apps for when you right-click image files, text files, or the background of the Finder folder itself.

It can also run AppleScript, shell scripts, or Automator Workflows.

I'd really like to add a "New File" option right under "New Folder" in the right click menu, and just have it make a new file in the selected folder or finder window.

This can be scripted via AppleScript and added to a Service Station menu. I will likely add native "New File" functionality in the future for Windows converts :)

On top of that, it'd be really killer to have an "open terminal here" option that would open a terminal window already cd'd into the current working directory.

This is one of the default menu items for Folders. Right-click any folder and select "Terminal" to open a pre-cd'd Terminal window to that directory:

Terminal menu item Finder

Download Service Station on the Mac App Store, or more details at ServiceStation.menu.