From 53215941fb37f313839f3e2ca28b291cdc0c708d Mon Sep 17 00:00:00 2001 From: Roxxus <230006507+Roxxust@users.noreply.github.com> Date: Mon, 23 Mar 2026 12:10:46 -0700 Subject: [PATCH 1/2] Update server-start.md with --bind add flag --bind with type string(assumption) add server start example for --bind using 127.0.0.1 as default. --- 3_cli/1_serve/server-start.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/3_cli/1_serve/server-start.md b/3_cli/1_serve/server-start.md index b82aaf3..881f07c 100644 --- a/3_cli/1_serve/server-start.md +++ b/3_cli/1_serve/server-start.md @@ -9,6 +9,10 @@ The `lms server start` command launches the LM Studio local server, allowing you ### Flags ```lms_params +- name: "--bind" + type: "string" + optional: true + description: "Bind the ip address to run the server on. If not provided, uses the last used address" - name: "--port" type: "number" optional: true @@ -26,6 +30,11 @@ Start the server with default settings: ```shell lms server start ``` +### Specify a custom address + +```shell +lms server start --bind 127.0.0.1 +``` ### Specify a custom port From ae1c47917375873ba426e186ee44c8ad542df5aa Mon Sep 17 00:00:00 2001 From: Roxxus <230006507+Roxxust@users.noreply.github.com> Date: Mon, 23 Mar 2026 12:17:22 -0700 Subject: [PATCH 2/2] Update server-start.md update description to remove possibly misleading description of it persisting if not specified. --- 3_cli/1_serve/server-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3_cli/1_serve/server-start.md b/3_cli/1_serve/server-start.md index 881f07c..7bef5d6 100644 --- a/3_cli/1_serve/server-start.md +++ b/3_cli/1_serve/server-start.md @@ -12,7 +12,7 @@ The `lms server start` command launches the LM Studio local server, allowing you - name: "--bind" type: "string" optional: true - description: "Bind the ip address to run the server on. If not provided, uses the last used address" + description: "Bind the ip address to run the server on." - name: "--port" type: "number" optional: true