@@ -171,7 +171,7 @@ The `mcp` subcommand starts an MCP (Model Context Protocol) server, exposing Asc
171171### usage with Claude Code
172172
173173``` bash
174- claude mcp add --transport stdio ascend-tools -- uvx --refresh -- from ./ascend-tools ascend-tools mcp
174+ claude mcp add --transport stdio ascend-tools -- uvx --from ./ascend-tools ascend-tools mcp
175175```
176176
177177Auth env vars (` ASCEND_SERVICE_ACCOUNT_ID ` , ` ASCEND_SERVICE_ACCOUNT_KEY ` , ` ASCEND_INSTANCE_API_URL ` ) are inherited from the shell.
@@ -182,13 +182,13 @@ claude mcp add --transport stdio \
182182 -e ASCEND_SERVICE_ACCOUNT_ID=" $ASCEND_SERVICE_ACCOUNT_ID " \
183183 -e ASCEND_SERVICE_ACCOUNT_KEY=" $ASCEND_SERVICE_ACCOUNT_KEY " \
184184 -e ASCEND_INSTANCE_API_URL=" $ASCEND_INSTANCE_API_URL " \
185- ascend-tools -- uvx --refresh -- from ./ascend-tools ascend-tools mcp
185+ ascend-tools -- uvx --from ./ascend-tools ascend-tools mcp
186186```
187187
188188### usage with Codex CLI
189189
190190``` bash
191- codex mcp add ascend-tools -- uvx --refresh -- from " $( pwd) " ascend-tools mcp
191+ codex mcp add ascend-tools -- uvx --from " $( pwd) " ascend-tools mcp
192192```
193193
194194If Codex is launched without your shell env, set them explicitly:
@@ -198,7 +198,7 @@ codex mcp add \
198198 --env " ASCEND_SERVICE_ACCOUNT_ID=$ASCEND_SERVICE_ACCOUNT_ID " \
199199 --env " ASCEND_SERVICE_ACCOUNT_KEY=$ASCEND_SERVICE_ACCOUNT_KEY " \
200200 --env " ASCEND_INSTANCE_API_URL=$ASCEND_INSTANCE_API_URL " \
201- ascend-tools -- uvx --refresh -- from " $( pwd) " ascend-tools mcp
201+ ascend-tools -- uvx --from " $( pwd) " ascend-tools mcp
202202```
203203
204204``` bash
@@ -214,6 +214,11 @@ codex mcp remove ascend-tools
214214```
215215
216216Auth env vars (` ASCEND_SERVICE_ACCOUNT_ID ` , ` ASCEND_SERVICE_ACCOUNT_KEY ` , ` ASCEND_INSTANCE_API_URL ` ) are inherited from the shell.
217+ If stale behavior appears after code updates, run one refresh manually:
218+
219+ ``` bash
220+ uvx --refresh --from " $( pwd) " ascend-tools --version
221+ ```
217222
218223### architecture notes
219224
0 commit comments