Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/superradcompany/tool-cli/llms.txt

Use this file to discover all available pages before exploring further.

Remove installed tools from tool-cli’s managed store. Uninstalled tools are no longer available for tool run, tool call, or tool host add. Host configurations that reference the removed tools should be updated separately with tool host remove.

Synopsis

tool uninstall [<name> ...] [flags]

Arguments

<names>
string[]
One or more tool references to remove. Use the same name you used at install time (e.g., appcypher/bash or my-local-tool). Omit when using --all.

Flags

--all
boolean
Uninstall every tool in the local store. Cannot be combined with individual <names>.
-y, --yes
boolean
Skip the confirmation prompt. Useful in non-interactive scripts and CI pipelines.

Examples

# Remove a single registry tool
tool uninstall appcypher/bash

# Remove a locally installed tool
tool uninstall my-local-tool

# Remove multiple tools in one command
tool uninstall tool1 tool2 tool3

# Remove all installed tools (will prompt for confirmation)
tool uninstall --all

# Remove all installed tools, skipping confirmation
tool uninstall --all -y
tool uninstall --all removes every tool in the managed store. This action cannot be undone. Any host configurations that reference those tools will stop working until the tools are reinstalled and the host config is updated.
Uninstalling a tool does not automatically remove it from host configurations (Claude Desktop, Cursor, etc.). Run tool host remove <host> after uninstalling if you want to clean up the host config as well.

Build docs developers (and LLMs) love