diff --git a/docs/toolhive/guides-cli/install.mdx b/docs/toolhive/guides-cli/install.mdx index 404a1cec..855884f8 100644 --- a/docs/toolhive/guides-cli/install.mdx +++ b/docs/toolhive/guides-cli/install.mdx @@ -25,8 +25,8 @@ depend on how many MCP servers you run and what resources they use. You can install ToolHive using several methods: - -If you use Homebrew on macOS, this is the easiest installation method: + +Homebrew is the easiest installation method on macOS or Linux: ```bash brew tap stacklok/tap @@ -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. + 1. Visit the [ToolHive releases page](https://github.com/stacklok/toolhive/releases) @@ -60,8 +63,7 @@ winget install stacklok.thv ```bash tar -xzf toolhive__.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 @@ -69,7 +71,6 @@ winget install stacklok.thv - #### Prerequisites for building from source - Go 1.24 or newer @@ -145,8 +146,7 @@ exists. To upgrade ToolHive: - - + If you installed ToolHive via Homebrew, upgrade it with: ```bash @@ -155,7 +155,6 @@ brew upgrade thv - If you installed ToolHive via WinGet, upgrade it with: ```bash @@ -164,13 +163,11 @@ winget upgrade stacklok.thv - Follow the same steps as the [initial installation](#install-toolhive), downloading the latest release and overwriting the previous binary. - If you built ToolHive from source, upgrade it by pulling the latest changes and rebuilding: diff --git a/docs/toolhive/index.mdx b/docs/toolhive/index.mdx index 434053fb..8a523390 100644 --- a/docs/toolhive/index.mdx +++ b/docs/toolhive/index.mdx @@ -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. diff --git a/docs/toolhive/tutorials/quickstart.mdx b/docs/toolhive/tutorials/quickstart.mdx index e993ebe7..ad338a77 100644 --- a/docs/toolhive/tutorials/quickstart.mdx +++ b/docs/toolhive/tutorials/quickstart.mdx @@ -40,13 +40,23 @@ For detailed installation instructions, see the [installing ToolHive](../guides-cli/install.mdx) guide. Here's a quick summary: - + ```bash brew tap stacklok/tap brew install thv ``` + + + + ```bash + winget install stacklok.thv + ``` + + Open a new terminal window after installation to ensure the `thv` command is + available. +