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.

Show a summary of every tool currently installed by tool-cli. Supports filtering by name, JSON output, and full capability details.

Synopsis

tool list [filter] [flags]

Arguments

<filter>
string
Optional name pattern to narrow results. Only tools whose names contain the filter string are shown.

Flags

--json
boolean
Emit the list as JSON. Useful for parsing in scripts or AI workflows.
--full
boolean
Include complete capability details for each server — the full list of tools, prompts, and resources it exposes. Without this flag, only basic metadata (name, version, description) is shown.

Global flags

-c, --concise
boolean
Minimal, machine-parseable output with reduced formatting. Applies globally to all commands.

Examples

# List all installed tools
tool list

# Filter results to tools whose names contain "bash"
tool list bash

# Concise output for use in scripts or AI agents
tool list -c

# Show full capability details (tools, prompts, resources) for each server
tool list --full

# JSON output for programmatic parsing
tool list --json
Use tool grep <pattern> to search across the schemas and descriptions of installed tools — for example, to find which installed tool exposes a method that accepts a path parameter.
tool list only shows tools installed through tool-cli. Registry tools that have been downloaded but not installed (via tool download) will not appear here.

Build docs developers (and LLMs) love