-
Notifications
You must be signed in to change notification settings - Fork 9
Arcade CLI upgrade path #825
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
8fad35d
7683d13
8631991
1343328
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,6 +35,47 @@ In your terminal, run the following command to install the `arcade-mcp` package | |
| </Tabs.Tab> | ||
| </Tabs> | ||
|
|
||
| ## Upgrade the Arcade CLI | ||
|
|
||
| To upgrade to the latest version of the Arcade CLI, run the appropriate command for your package manager: | ||
|
|
||
| <Tabs items={["uv", "pip"]}> | ||
| <Tabs.Tab> | ||
|
|
||
| ```bash | ||
| uv tool upgrade arcade-mcp | ||
| ``` | ||
|
|
||
| </Tabs.Tab> | ||
|
|
||
| <Tabs.Tab> | ||
|
|
||
| ```bash | ||
| pip install --upgrade arcade-mcp | ||
| ``` | ||
|
|
||
| </Tabs.Tab> | ||
| </Tabs> | ||
|
|
||
| After upgrading, verify the installation: | ||
|
|
||
| ```bash | ||
| arcade --version | ||
| ``` | ||
|
|
||
| <Callout type="info"> | ||
| If you previously had the `arcade-ai` package installed, you should uninstall it first. The old `arcade-ai` CLI has been replaced by `arcade-mcp`. See the [migration guide](/guides/create-tools/migrate-toolkits) for details on migrating from legacy toolkits. | ||
| </Callout> | ||
|
|
||
| ### Re-authenticate after upgrading | ||
|
|
||
| After upgrading, you may need to refresh your credentials: | ||
|
|
||
| ```bash | ||
| arcade logout | ||
| arcade login | ||
| ``` | ||
|
Comment on lines
+70
to
+77
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we introduce a breaking change that would require the user to logout and log back in, then we would make sure the CLI would gracefully handle this. i.e., I don't think this step is necessary
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is now if you are ~2 mo old. That was what @arcadeben saw |
||
|
|
||
| ## Usage | ||
|
|
||
| ```bash | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.