Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,17 @@ with specialized model gateways.
npx -y https://github.com/sandbaseai/cli/releases/download/v0.1.17/sandbaseai-cli-0.1.17.tgz connect
```

For a reproducible install, verify the immutable release archive before
running it. The SHA-256 for `sandbaseai-cli-0.1.17.tgz` is
`1ad535b2899ca460b57b3c268aef278fee28fd28e649a89b92951514fd71fffa`.

```sh
curl -fL -o sandbaseai-cli-0.1.17.tgz \
https://github.com/sandbaseai/cli/releases/download/v0.1.17/sandbaseai-cli-0.1.17.tgz
echo '1ad535b2899ca460b57b3c268aef278fee28fd28e649a89b92951514fd71fffa sandbaseai-cli-0.1.17.tgz' | shasum -a 256 -c -
npx -y ./sandbaseai-cli-0.1.17.tgz connect
```

Approve the browser authorization once; each supported client can then discover,
inspect, and run available SandBase models and APIs through the local MCP bridge.

Expand Down
4 changes: 3 additions & 1 deletion llms-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ Use the immutable v0.1.17 GitHub Release while npm `latest` is being updated:
npx -y https://github.com/sandbaseai/cli/releases/download/v0.1.17/sandbaseai-cli-0.1.17.tgz connect --client <client-id>
```

For an offline/integrity check, the archive's SHA-256 is
`1ad535b2899ca460b57b3c268aef278fee28fd28e649a89b92951514fd71fffa`.

Common client IDs include `codex`, `claude-code`, `cursor`, `gemini-cli`,
`windsurf`, and `opencode`. To configure every supported client detected on the
machine, omit `--client <client-id>`.
Expand Down Expand Up @@ -57,4 +60,3 @@ This removes only the SandBase-owned configuration. It leaves unrelated and
user-managed MCP entries unchanged.

Source: https://github.com/sandbaseai/cli

Loading