LanguageTool comes with its own embedded HTTP server, so you can send a text to a local instance of LanguageTool. This page describes how to set this up.
WARNING: This approach is only supposed to be used by advanced users who are familiar with using the command line. If you’re not, we recommend using the default settings, which use our Cloud servers.
Download the LanguageTool Desktop version for offline use (>200MB) and unzip it. Note that this approach relies on our old desktop version, the new ones (Windows, Mac) will not work with this approach.
On the command line, go to the unzipped directory and start LanguageTool HTTP server using these commands:
java -cp languagetool-server.jar org.languagetool.server.HTTPServer --port 8081 --allow-origin
Or this command that is useful for system package management installs like for Arch Linux:
languagetool --http --port 8081 --allow-origin "*"
On MacOS you can start the server using brew:
brew services start languagetool
java
cannot be found,
install Java 8 or later first.--allow-origin
if you do not want to use the server from the browser
add-on.https://localhost:8082/v2
as “Other server” (source).
Note: The LanguageTool server doesn’t support synonyms, so the synonym feature in the add-on
will not work.NOTE: This will give you a basic server missing some rules based on statistics. See here for how to set up those.
You can test the server by calling this URL in your browser:
http://localhost:8081/v2/check?language=en-US&text=my+text
If you’re not just testing, you should use HTTP POST to transfer your data. You can test it like this, using curl:
curl -d "language=en-US" -d "text=a simple test" http://localhost:8081/v2/check
You can specify a file with advanced configuration options for the LT server
with --config
. Use --help
to get information about the supported settings in that file.
For security reasons, the server will not be accessible from other hosts. If
you want to run a server for remote users, use the --public
option.
Start the stand-alone application and configure it (Text Checking -> Options… -> General) to listen on a port that is not used yet (the default port, 8081, should often be okay). This way LanguageTool will also be available in server mode until you stop it.
See the JSON API.
Note that for a server started from a GUI, a user may configure it in the configuration dialog box to disable some unwanted rules. This may be beneficial if the calling program does not allow configuration of the call to the LanguageTool server, and the user wants to enable or disable some checks. However, if the program does disable or enable any rules, then the configuration set by the user will be silently ignored.
We recommend using the HTTP server of LanguageTool and running it behind an Apache or nginx reverse proxy with SSL/TLS support.