> ## Documentation Index
> Fetch the complete documentation index at: https://composio-27-feat-docs-revamp.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Listing all tools, actions, and more

> This section will walk you through discovering and managing the tools, integrations, actions, and more.

### Listing All Apps (Tools)

<CodeGroup>
  ```python Python
  from composio import ComposioToolSet

  toolset = ComposioToolSet()
  print(toolset.get_apps())
  ```

  ```javascript JavaScript
  import { Composio } from "composio-core";

  const composio = new Composio();
  console.log(await composio.apps.list());
  ```

  ```bash CLI
  composio apps
  ```
</CodeGroup>

### Listing All Actions

<CodeGroup>
  ```python Python
  from composio import Composio

  client = Composio()
  print(client.actions.get(limit=10)) # print all actions supported
  ```

  ```javascript JavaScript
  import { Composio } from "composio-core";
  const composio = new Composio();
  const actions = await composio.actions.list({ data: { limit: 10 } });

  console.log(actions); // print all actions supported
  ```

  ```bash CLI
  composio actions --limit 10
  ```
</CodeGroup>
