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.

Three commands manage your registry credentials: tool login stores your API token, tool whoami confirms who you’re authenticated as, and tool logout clears stored credentials.

tool login

Authenticate with tool.store. Stores your API token locally so commands like tool publish can use it automatically. Without --token, the command prompts you to enter your token interactively.
tool login [options]

Options

--token
string
API token to store. If not provided, the command prompts interactively.

Examples

# Interactive — prompts for your token
tool login

# Non-interactive — pass the token directly
tool login --token "your-token"
Get your API token from your account at tool.store. Once stored, the token is used automatically by tool publish and other commands that require authentication.

tool logout

Clear stored registry credentials from your local machine. After logging out, commands that require authentication (like tool publish) will prompt you to log in again.
tool logout
This command has no flags.

Examples

tool logout

tool whoami

Show who you’re currently authenticated as. By default uses your stored credentials. Pass --token to validate a specific token without replacing the stored one.
tool whoami [options]

Options

--token
string
API token to validate. If not provided, the stored credentials are used.

Examples

# Show auth status using stored credentials
tool whoami

# Validate a specific token
tool whoami --token "your-token"

Build docs developers (and LLMs) love