Skip to content

Commit c8a60d2

Browse files
AUTO: Sync ScalarDB docs in English to docs site repo (#1647)
Co-authored-by: josh-wong <[email protected]>
1 parent 2f53e5e commit c8a60d2

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

docs/scalardb-mcp-server/getting-started-with-scalardb-mcp-server.mdx

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,12 @@ Select the configuration method that matches your MCP client. If you're using th
131131

132132
<Tabs groupId="distribution" queryString>
133133
<TabItem value="docker" label="Docker (recommended)" default>
134-
Pull the Docker image:
134+
Docker images are available from the [ScalarDB MCP Server container registry](https://github.com/scalar-labs/scalardb-mcp-server/pkgs/container/scalardb-mcp-server).
135+
136+
You can pull the Docker image from the container registry by running the following command. Be sure to replace `<VERSION>` with the version that you want to use.
135137

136138
```bash
137-
docker pull ghcr.io/scalar-labs/scalardb-mcp-server:0.9.0
139+
docker pull ghcr.io/scalar-labs/scalardb-mcp-server:<VERSION>
138140
```
139141

140142
#### Step 3: Choose your ScalarDB deployment type
@@ -146,7 +148,7 @@ Select the configuration method that matches your MCP client. If you're using th
146148
```bash
147149
claude mcp add scalardb -- docker run --rm -i \
148150
--name scalardb-mcp-server \
149-
ghcr.io/scalar-labs/scalardb-mcp-server:0.9.0 \
151+
ghcr.io/scalar-labs/scalardb-mcp-server:<VERSION> \
150152
--scalar.mcp.db.server.tool.mode=SQL \
151153
--scalar.db.transaction_manager=cluster \
152154
--scalar.db.contact_points=indirect:host.docker.internal \
@@ -204,7 +206,7 @@ Docker flags:
204206
```bash
205207
claude mcp add scalardb -- docker run --rm -i \
206208
--name scalardb-mcp-server \
207-
ghcr.io/scalar-labs/scalardb-mcp-server:0.9.0 \
209+
ghcr.io/scalar-labs/scalardb-mcp-server:<VERSION> \
208210
--scalar.mcp.db.server.tool.mode=CRUD \
209211
--scalar.db.transaction_manager=consensus-commit \
210212
--scalar.db.storage=multi-storage \
@@ -251,7 +253,7 @@ Docker flags:
251253

252254
```bash
253255
claude mcp add scalardb \
254-
-- java -jar /path/to/scalardb-mcp-server-0.9.0.jar \
256+
-- java -jar /path/to/scalardb-mcp-server-<VERSION>.jar \
255257
--scalar.mcp.db.server.tool.mode=SQL \
256258
--scalar.db.transaction_manager=cluster \
257259
--scalar.db.contact_points=indirect:localhost \
@@ -299,7 +301,7 @@ For complete ScalarDB Cluster deployment and configuration instructions, see [Sc
299301

300302
```bash
301303
claude mcp add scalardb \
302-
-- java -jar /path/to/scalardb-mcp-server-0.9.0.jar \
304+
-- java -jar /path/to/scalardb-mcp-server-<VERSION>.jar \
303305
--scalar.mcp.db.server.tool.mode=CRUD \
304306
--scalar.db.transaction_manager=consensus-commit \
305307
--scalar.db.storage=multi-storage \
@@ -335,10 +337,12 @@ The example above demonstrates a multi-storage configuration. For other ScalarDB
335337

336338
<Tabs groupId="distribution" queryString>
337339
<TabItem value="docker" label="Docker (recommended)" default>
338-
Pull the Docker image:
340+
Docker images are available from the [ScalarDB MCP Server container registry](https://github.com/scalar-labs/scalardb-mcp-server/pkgs/container/scalardb-mcp-server).
341+
342+
You can pull the Docker image from the container registry by running the following command. Be sure to replace `<VERSION>` with the version that you want to use.
339343

340344
```bash
341-
docker pull ghcr.io/scalar-labs/scalardb-mcp-server:0.9.0
345+
docker pull ghcr.io/scalar-labs/scalardb-mcp-server:<VERSION>
342346
```
343347

344348
#### Step 3: Choose your ScalarDB deployment type
@@ -357,7 +361,7 @@ The example above demonstrates a multi-storage configuration. For other ScalarDB
357361
"-i",
358362
"--rm",
359363
"--name", "scalardb-mcp-server",
360-
"ghcr.io/scalar-labs/scalardb-mcp-server:0.9.0",
364+
"ghcr.io/scalar-labs/scalardb-mcp-server:<VERSION>",
361365
"--scalar.db.transaction_manager=cluster",
362366
"--scalar.db.contact_points=indirect:host.docker.internal",
363367
"--scalar.db.contact_port=60053",
@@ -426,7 +430,7 @@ For complete ScalarDB Cluster deployment and configuration instructions, see [Sc
426430
"-i",
427431
"--rm",
428432
"--name", "scalardb-mcp-server",
429-
"ghcr.io/scalar-labs/scalardb-mcp-server:0.9.0",
433+
"ghcr.io/scalar-labs/scalardb-mcp-server:<VERSION>",
430434
"--scalar.mcp.db.server.tool.mode=CRUD",
431435
"--scalar.db.transaction_manager=consensus-commit",
432436
"--scalar.db.storage=multi-storage",
@@ -482,7 +486,7 @@ The example above demonstrates a multi-storage configuration. For other ScalarDB
482486
"command": "java",
483487
"args": [
484488
"-jar",
485-
"/path/to/scalardb-mcp-server-0.9.0.jar",
489+
"/path/to/scalardb-mcp-server-<VERSION>.jar",
486490
"--scalar.mcp.db.server.tool.mode=SQL",
487491
"--scalar.db.transaction_manager=cluster",
488492
"--scalar.db.contact_points=indirect:localhost",
@@ -539,7 +543,7 @@ For complete ScalarDB Cluster deployment and configuration instructions, see [Sc
539543
"command": "java",
540544
"args": [
541545
"-jar",
542-
"/path/to/scalardb-mcp-server-0.9.0.jar",
546+
"/path/to/scalardb-mcp-server-<VERSION>.jar",
543547
"--scalar.mcp.db.server.tool.mode=CRUD",
544548
"--scalar.db.transaction_manager=consensus-commit",
545549
"--scalar.db.storage=multi-storage",

0 commit comments

Comments
 (0)