That’d be an Apps item then. Although, if you’re going that route, check out the incomplete Joplin Web Api that @foxmask has been working on and the official Joplin Api.
Here is the Python version for the support of Joplin API available from https://github.com/foxmask/joplin-api
example of the way to create notes, ping the server, get notes and tags
>>> from joplin_api import JoplinApi
>>> joplin = JoplinApi(token='the token provided by Joplin in the WebClipper menu:P'))
>>> joplin.ping() # to check if the service is up
>>> joplin.get_folders() # to get all the folders
>>> folder_title = 'Default'
>>> folder = joplin.create_folder(folder_title) # to create a …
https://joplinapp.org/api/