uipath-cli
latest
false
UiPath CLI user guide
- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- create-project
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-library-object-repository
- get-object-repository
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- pack
- publish
- remote
- restore
- run, debug & execution
- run-file
- search-templates
- start-studio
- stop-execution
- tm
- uia
- uip tasks
- uip traces
- uip traces feedback
- Migration
- Reference & support
List the tool resources configured on an agent project with `uip agent tool list`.
uip agent tool currently registers a single subcommand, list. There is no add, discover, connect, or remove verb — tool resources are added by hand-editing agent.json (or resources/<name>/resource.json), not through a dedicated CLI verb.
Local-only — no login required.
Synopsis
uip agent tool list [--path <path>]
uip agent tool list [--path <path>]
All invocations honor the global options (--output, --output-filter, --log-level, --log-file). Exit codes follow the standard contract.
uip agent tool list
List the tools configured for the agent.
Options
| Flag | Default | Purpose |
|---|---|---|
--path <path> | . | Path to the agent project directory. |
Example
uip agent tool list --path ./my-agent
uip agent tool list --path ./my-agent
Data shape (--output json)
{
"Code": "AgentToolList",
"Data": [
{
"Name": "InvoiceLookup",
"Type": "process",
"Id": "a1b2c3d4-0000-0000-0000-000000000601",
"Enabled": true
}
]
}
{
"Code": "AgentToolList",
"Data": [
{
"Name": "InvoiceLookup",
"Type": "process",
"Id": "a1b2c3d4-0000-0000-0000-000000000601",
"Enabled": true
}
]
}
An agent with no configured tools returns Data: { "Message": "No tools configured" }.
Related
uip agent validate— checks that every tool resource has a matching UUID and required fields.uip agent refresh— regeneratesentry-points.json/bindings_v2.jsonafter a tool resource is added or changed.