Skip to content

Commit 6d4c78b

Browse files
Update ToolHive reference docs for v0.6.3 (#292)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 1b26af2 commit 6d4c78b

File tree

8 files changed

+601
-500
lines changed

8 files changed

+601
-500
lines changed

docs/toolhive/reference/cli/thv_client_register.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@ Valid clients:
2828
- continue: Continue.dev extensions for VS Code and JetBrains
2929
- cursor: Cursor editor
3030
- goose: Goose AI agent
31+
- kiro: Kiro AI IDE
3132
- lm-studio: LM Studio application
33+
- opencode: OpenCode editor
3234
- roo-code: Roo Code extension for VS Code
3335
- trae: Trae IDE
34-
- vscode: Visual Studio Code
36+
- vscode: Visual Studio Code (GitHub Copilot)
3537
- vscode-insider: Visual Studio Code Insiders edition
3638
- windsurf: Windsurf IDE
3739
- windsurf-jetbrains: Windsurf for JetBrains IDEs

docs/toolhive/reference/cli/thv_client_remove.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@ Valid clients:
2828
- continue: Continue.dev extensions for VS Code and JetBrains
2929
- cursor: Cursor editor
3030
- goose: Goose AI agent
31+
- kiro: Kiro AI IDE
3132
- lm-studio: LM Studio application
33+
- opencode: OpenCode editor
3234
- roo-code: Roo Code extension for VS Code
3335
- trae: Trae IDE
34-
- vscode: Visual Studio Code
36+
- vscode: Visual Studio Code (GitHub Copilot)
3537
- vscode-insider: Visual Studio Code Insiders edition
3638
- windsurf: Windsurf IDE
3739
- windsurf-jetbrains: Windsurf for JetBrains IDEs

docs/toolhive/reference/cli/thv_config.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,5 @@ The config command provides subcommands to manage application configuration sett
3939
* [thv config set-registry](thv_config_set-registry.md) - Set the MCP server registry
4040
* [thv config unset-ca-cert](thv_config_unset-ca-cert.md) - Remove the configured CA certificate
4141
* [thv config unset-registry](thv_config_unset-registry.md) - Remove the configured registry
42+
* [thv config usage-metrics](thv_config_usage-metrics.md) - Enable or disable anonymous usage metrics
4243

docs/toolhive/reference/cli/thv_config_set-registry.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,15 @@ Set the MCP server registry
1515

1616
### Synopsis
1717

18-
Set the MCP server registry to either a remote URL or local file path.
19-
The command automatically detects whether the input is a URL or file path.
18+
Set the MCP server registry to a remote URL, local file path, or API endpoint.
19+
The command automatically detects the registry type:
20+
- URLs ending with .json are treated as static registry files
21+
- Other URLs are treated as MCP Registry API endpoints (v0.1 spec)
22+
- Local paths are treated as local registry files
2023

2124
Examples:
22-
thv config set-registry https://example.com/registry.json # Remote URL
25+
thv config set-registry https://example.com/registry.json # Static remote file
26+
thv config set-registry https://registry.example.com # API endpoint
2327
thv config set-registry /path/to/local-registry.json # Local file path
2428
thv config set-registry file:///path/to/local-registry.json # Explicit file URL
2529

@@ -30,7 +34,7 @@ thv config set-registry <url-or-path> [flags]
3034
### Options
3135

3236
```
33-
-p, --allow-private-ip Allow setting the registry URL, even if it references a private IP address
37+
-p, --allow-private-ip Allow setting the registry URL or API endpoint, even if it references a private IP address
3438
-h, --help help for set-registry
3539
```
3640

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
title: thv config usage-metrics
3+
hide_title: true
4+
description: Reference for ToolHive CLI command `thv config usage-metrics`
5+
last_update:
6+
author: autogenerated
7+
slug: thv_config_usage-metrics
8+
mdx:
9+
format: md
10+
---
11+
12+
## thv config usage-metrics
13+
14+
Enable or disable anonymous usage metrics
15+
16+
```
17+
thv config usage-metrics <enable|disable> [flags]
18+
```
19+
20+
### Options
21+
22+
```
23+
-h, --help help for usage-metrics
24+
```
25+
26+
### Options inherited from parent commands
27+
28+
```
29+
--debug Enable debug mode
30+
```
31+
32+
### SEE ALSO
33+
34+
* [thv config](thv_config.md) - Manage application configuration
35+

docs/toolhive/reference/cli/thv_registry_info.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ thv registry info [server] [flags]
2626
```
2727
--format string Output format (json or text) (default "text")
2828
-h, --help help for info
29+
--refresh Force refresh registry cache
2930
```
3031

3132
### Options inherited from parent commands

docs/toolhive/reference/cli/thv_registry_list.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ thv registry list [flags]
2626
```
2727
--format string Output format (json or text) (default "text")
2828
-h, --help help for list
29+
--refresh Force refresh registry cache
2930
```
3031

3132
### Options inherited from parent commands

0 commit comments

Comments
 (0)