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
17 changes: 7 additions & 10 deletions docs/toolhive/guides-cli/install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ depend on how many MCP servers you run and what resources they use.
You can install ToolHive using several methods:

<Tabs groupId='installer' queryString='installer'>
<TabItem value='macos' label='Homebrew (macOS)' default>
If you use Homebrew on macOS, this is the easiest installation method:
<TabItem value='homebrew' label='Homebrew (macOS/Linux)' default>
Homebrew is the easiest installation method on macOS or Linux:

```bash
brew tap stacklok/tap
Expand All @@ -41,6 +41,9 @@ WinGet is available by default on Windows, making this the easiest installation
winget install stacklok.thv
```

Open a new terminal window after installation to ensure the `thv` command is
available.

</TabItem>
<TabItem value='binary' label='Pre-compiled binaries'>
1. Visit the [ToolHive releases page](https://github.com/stacklok/toolhive/releases)
Expand All @@ -60,16 +63,14 @@ winget install stacklok.thv

```bash
tar -xzf toolhive_<version>_<platform>.tar.gz
sudo mv thv /usr/local/bin/
sudo chmod +x /usr/local/bin/thv
sudo install -m 0755 thv /usr/local/bin/
```

On Windows, extract the ZIP file to a folder and add that folder to your PATH
environment variable.

</TabItem>
<TabItem value='source' label='Build from source'>

#### Prerequisites for building from source

- Go 1.24 or newer
Expand Down Expand Up @@ -145,8 +146,7 @@ exists.
To upgrade ToolHive:

<Tabs groupId='installer' queryString='installer'>
<TabItem value='macos' label='Homebrew (macOS)' default>

<TabItem value='homebrew' label='Homebrew (macOS)' default>
If you installed ToolHive via Homebrew, upgrade it with:

```bash
Expand All @@ -155,7 +155,6 @@ brew upgrade thv

</TabItem>
<TabItem value='winget' label='WinGet (Windows)'>

If you installed ToolHive via WinGet, upgrade it with:

```bash
Expand All @@ -164,13 +163,11 @@ winget upgrade stacklok.thv

</TabItem>
<TabItem value='binary' label='Pre-compiled binaries'>

Follow the same steps as the [initial installation](#install-toolhive),
downloading the latest release and overwriting the previous binary.

</TabItem>
<TabItem value='source' label='Build from source'>

If you built ToolHive from source, upgrade it by pulling the latest changes and
rebuilding:

Expand Down
2 changes: 1 addition & 1 deletion docs/toolhive/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ manage MCP servers centrally.

ToolHive offers the following features to simplify MCP deployment:

- **Simplified deployment**: Deploy MCP servers instantly with a single command
- **Streamlined deployment**: Deploy MCP servers instantly with a single command
using Docker containers or directly from package managers via protocol schemes
(`uvx://`, `npx://`, `go://`). Access a curated registry of verified MCP
servers that you can discover and run effortlessly.
Expand Down
12 changes: 11 additions & 1 deletion docs/toolhive/tutorials/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,23 @@ For detailed installation instructions, see the
[installing ToolHive](../guides-cli/install.mdx) guide. Here's a quick summary:

<Tabs groupId='installer' queryString='installer'>
<TabItem value='homebrew' label='Homebrew (macOS)' default>
<TabItem value='homebrew' label='Homebrew (macOS/Linux)' default>

```bash
brew tap stacklok/tap
brew install thv
```

</TabItem>
<TabItem value='winget' label='WinGet (Windows)' default>

```bash
winget install stacklok.thv
```

Open a new terminal window after installation to ensure the `thv` command is
available.

</TabItem>
<TabItem value='binary' label='Pre-compiled binaries'>

Expand Down
Loading