lms server status
Check the status of your running LM Studio server instance.
The lms server status command displays the current status of the LM Studio local server, including whether it's running and its configuration.
Flags
--json (optional) : flag
Output the status in JSON format
--verbose (optional) : flag
Enable detailed logging output
--quiet (optional) : flag
Suppress all logging output
--log-level (optional) : string
The level of logging to use. Defaults to 'info'
Check server status
Get the basic status of the server:
lms server statusExample output:
The server is running on port 1234.Example usage
➜ ~ lms server start
Starting server...
Waking up LM Studio service...
Success! Server is now running on port 1234
➜ ~ lms server status
The server is running on port 1234.JSON output
Get the status in machine-readable JSON format:
lms server status --json --quietExample output:
{ "running": true, "port": 1234 }Control logging output
Adjust logging verbosity:
lms server status --verbose
lms server status --quiet
lms server status --log-level debugYou can only use one logging control flag at a time (--verbose, --quiet, or --log-level).