@@ -102,7 +102,7 @@ create or update a secret in your secret store. You can set a secret
102102interactively by running:
103103
104104``` bash
105- thv secret set < secret-name >
105+ thv secret set < SECRET_NAME >
106106```
107107
108108ToolHive prompts you to enter the secret value, and the input remains hidden for
@@ -118,7 +118,7 @@ thv secret set github
118118Alternatively, you can set a secret using standard input:
119119
120120``` bash
121- echo " MY_SECRET_VALUE" | thv secret set < secret-name >
121+ echo " MY_SECRET_VALUE" | thv secret set < SECRET_NAME >
122122```
123123
124124:::tip Example
@@ -144,15 +144,15 @@ thv secret list
144144To decrypt and view a secret's value:
145145
146146``` bash
147- thv secret get < secret-name >
147+ thv secret get < SECRET_NAME >
148148```
149149
150150### Remove a secret
151151
152152To delete a secret when it's no longer needed:
153153
154154``` bash
155- thv secret delete < secret-name >
155+ thv secret delete < SECRET_NAME >
156156```
157157
158158### Reset your secret store
@@ -206,7 +206,7 @@ To do this, use the `--secret` flag with the
206206into the container as an environment variable.
207207
208208``` bash
209- thv run --secret < secret-name > ,target=< ENV_VAR_NAME> < server-name >
209+ thv run --secret < SECRET_NAME > ,target=< ENV_VAR_NAME> < SERVER >
210210```
211211
212212Check the MCP server's documentation to find the expected environment variable
@@ -217,7 +217,7 @@ For MCP servers in the ToolHive registry, you can find the expected environment
217217variable names in the server's registry entry:
218218
219219``` bash
220- thv registry info < server-name >
220+ thv registry info < SERVER_NAME >
221221```
222222
223223### Example: GitHub API token
@@ -310,21 +310,21 @@ If your MCP server can't access a secret:
3103102 . Verify the secret value:
311311
312312 ``` bash
313- thv secret get < secret-name >
313+ thv secret get < SECRET_NAME >
314314 ```
315315
3163163 . Check that you're using the correct secret name and target environment
317317 variable. Inspect the MCP server's expected environment variables in the
318318 registry:
319319
320320 ``` bash
321- thv registry info < server-name >
321+ thv registry info < SERVER_NAME >
322322 ```
323323
3243244 . Inspect the server logs for any errors:
325325
326326 ``` bash
327- thv logs < server-name >
327+ thv logs < SERVER_NAME >
328328 ```
329329
330330</details >
0 commit comments