1---
2layout: "docs"
3page_title: "plugin list - Command"
4sidebar_title: "<code>list</code>"
5sidebar_current: "docs-commands-plugin-list"
6description: |-
7  The "plugin list" command lists all available plugins in the plugin catalog.
8---
9
10# plugin list
11
12The `plugin list` command lists all available plugins in the plugin catalog.
13It can be used alone or with a type such as "auth", "database", or "secret".
14
15## Examples
16
17List all available plugins in the catalog.
18
19```text
20$ vault plugin list
21
22Plugins
23-------
24my-custom-plugin
25# ...
26
27$ vault plugin list database
28Plugins
29-------
30cassandra-database-plugin
31# ...
32```
33
34## Usage
35
36The following flags are available in addition to the [standard set of
37flags](/docs/commands/index.html) included on all commands.
38
39### Output Options
40
41- `-format` `(string: "table")` - Print the output in the given format. Valid
42  formats are "table", "json", or "yaml". This can also be specified via the
43  `VAULT_FORMAT` environment variable.
44